Commit 87818a14 authored by Jason R. Coombs's avatar Jason R. Coombs

Bumped to 0.7 in preparation for next release.

parent fa3e4622
...@@ -29,7 +29,7 @@ The recommended way to install setuptools on Windows is to download ...@@ -29,7 +29,7 @@ The recommended way to install setuptools on Windows is to download
`ez_setup.py`_ and run it. The script will download the appropriate .egg `ez_setup.py`_ and run it. The script will download the appropriate .egg
file and install it for you. file and install it for you.
.. _ez_setup.py: https://bitbucket.org/pypa/setuptools/raw/0.7b5/ez_setup.py .. _ez_setup.py: https://bitbucket.org/pypa/setuptools/raw/0.7/ez_setup.py
For best results, uninstall previous versions FIRST (see `Uninstalling`_). For best results, uninstall previous versions FIRST (see `Uninstalling`_).
...@@ -45,7 +45,7 @@ Unix-based Systems including Mac OS X ...@@ -45,7 +45,7 @@ Unix-based Systems including Mac OS X
Download `ez_setup.py`_ and run it using the target Python version. The script Download `ez_setup.py`_ and run it using the target Python version. The script
will download the appropriate version and install it for you:: will download the appropriate version and install it for you::
> wget https://bitbucket.org/pypa/setuptools/raw/0.7b5/ez_setup.py -O - | python > wget https://bitbucket.org/pypa/setuptools/raw/0.7/ez_setup.py -O - | python
Note that you will may need to invoke the command with superuser privileges to Note that you will may need to invoke the command with superuser privileges to
install to the system Python. install to the system Python.
...@@ -53,7 +53,7 @@ install to the system Python. ...@@ -53,7 +53,7 @@ install to the system Python.
Alternatively, on Python 2.6 and later, Setuptools may be installed to a Alternatively, on Python 2.6 and later, Setuptools may be installed to a
user-local path:: user-local path::
> wget https://bitbucket.org/pypa/setuptools/raw/0.7b5/ez_setup.py > wget https://bitbucket.org/pypa/setuptools/raw/0.7/ez_setup.py
> python ez_setup.py --user > python ez_setup.py --user
......
...@@ -48,9 +48,9 @@ copyright = u'2009-2013, The fellowship of the packaging' ...@@ -48,9 +48,9 @@ copyright = u'2009-2013, The fellowship of the packaging'
# built documents. # built documents.
# #
# The short X.Y version. # The short X.Y version.
version = '0.7b5' version = '0.7'
# The full version, including alpha/beta/rc tags. # The full version, including alpha/beta/rc tags.
release = '0.7b5' release = '0.7'
# The language for content autogenerated by Sphinx. Refer to documentation # The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages. # for a list of supported languages.
......
...@@ -28,7 +28,7 @@ try: ...@@ -28,7 +28,7 @@ try:
except ImportError: except ImportError:
USER_SITE = None USER_SITE = None
DEFAULT_VERSION = "0.7b5" DEFAULT_VERSION = "0.7"
DEFAULT_URL = "http://pypi.python.org/packages/source/s/setuptools/" DEFAULT_URL = "http://pypi.python.org/packages/source/s/setuptools/"
def _python_cmd(*args): def _python_cmd(*args):
......
...@@ -22,7 +22,7 @@ try: ...@@ -22,7 +22,7 @@ try:
except Exception: except Exception:
pass pass
VERSION = '0.7b5' VERSION = '0.7'
PACKAGE_INDEX = 'https://pypi.python.org/pypi' PACKAGE_INDEX = 'https://pypi.python.org/pypi'
def set_versions(): def set_versions():
......
...@@ -46,7 +46,7 @@ exec(init_file.read(), d) ...@@ -46,7 +46,7 @@ exec(init_file.read(), d)
init_file.close() init_file.close()
SETUP_COMMANDS = d['__all__'] SETUP_COMMANDS = d['__all__']
VERSION = "0.7b5" VERSION = "0.7"
from setuptools import setup, find_packages from setuptools import setup, find_packages
from setuptools.command.build_py import build_py as _build_py from setuptools.command.build_py import build_py as _build_py
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment