summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2013-07-02 08:34:20 -0400
committerJason R. Coombs <jaraco@jaraco.com>2013-07-02 08:34:20 -0400
commitb69b0368a7201f5b21e8d4fd0fb1379db87090c8 (patch)
treec8c6756733d6882d28cb98ec39af6383ed516c46
parenta6a5e085c5161eff974d4838a1d28c87af0305da (diff)
downloadpython-setuptools-git-b69b0368a7201f5b21e8d4fd0fb1379db87090c8.tar.gz
Bumped to 0.7.7 in preparation for next release.
-rwxr-xr-xREADME.txt8
-rw-r--r--docs/conf.py4
-rw-r--r--ez_setup.py2
-rw-r--r--release.py2
-rwxr-xr-xsetup.py2
-rw-r--r--setuptools/__init__.py2
6 files changed, 10 insertions, 10 deletions
diff --git a/README.txt b/README.txt
index bb57ea76..c3d5b3c6 100755
--- a/README.txt
+++ b/README.txt
@@ -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
file and install it for you.
-.. _ez_setup.py: https://bitbucket.org/pypa/setuptools/raw/0.7.6/ez_setup.py
+.. _ez_setup.py: https://bitbucket.org/pypa/setuptools/raw/0.7.7/ez_setup.py
For best results, uninstall previous versions FIRST (see `Uninstalling`_).
@@ -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
will download the appropriate version and install it for you::
- > wget https://bitbucket.org/pypa/setuptools/raw/0.7.6/ez_setup.py -O - | python
+ > wget https://bitbucket.org/pypa/setuptools/raw/0.7.7/ez_setup.py -O - | python
Note that you will may need to invoke the command with superuser privileges to
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
user-local path::
- > wget https://bitbucket.org/pypa/setuptools/raw/0.7.6/ez_setup.py
+ > wget https://bitbucket.org/pypa/setuptools/raw/0.7.7/ez_setup.py
> python ez_setup.py --user
@@ -66,7 +66,7 @@ tarball from `Setuptools on PyPI <https://pypi.python.org/pypi/setuptools>`_
and run setup.py with any supported distutils and Setuptools options.
For example::
- setuptools-0.7.6$ python setup.py --prefix=/opt/setuptools
+ setuptools-0.7.7$ python setup.py --prefix=/opt/setuptools
Use ``--help`` to get a full options list, but we recommend consulting
the `EasyInstall manual`_ for detailed instructions, especially `the section
diff --git a/docs/conf.py b/docs/conf.py
index 0cae1621..a90d8866 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -48,9 +48,9 @@ copyright = u'2009-2013, The fellowship of the packaging'
# built documents.
#
# The short X.Y version.
-version = '0.7.6'
+version = '0.7.7'
# The full version, including alpha/beta/rc tags.
-release = '0.7.6'
+release = '0.7.7'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
diff --git a/ez_setup.py b/ez_setup.py
index f68388f1..62bc0361 100644
--- a/ez_setup.py
+++ b/ez_setup.py
@@ -28,7 +28,7 @@ try:
except ImportError:
USER_SITE = None
-DEFAULT_VERSION = "0.7.6"
+DEFAULT_VERSION = "0.7.7"
DEFAULT_URL = "https://pypi.python.org/packages/source/s/setuptools/"
def _python_cmd(*args):
diff --git a/release.py b/release.py
index 46f32bbc..a4f72f72 100644
--- a/release.py
+++ b/release.py
@@ -22,7 +22,7 @@ try:
except Exception:
pass
-VERSION = '0.7.6'
+VERSION = '0.7.7'
PACKAGE_INDEX = 'https://pypi.python.org/pypi'
def set_versions():
diff --git a/setup.py b/setup.py
index f2bd1fd5..9b1c67f7 100755
--- a/setup.py
+++ b/setup.py
@@ -46,7 +46,7 @@ exec(init_file.read(), d)
init_file.close()
SETUP_COMMANDS = d['__all__']
-VERSION = "0.7.6"
+VERSION = "0.7.7"
from setuptools import setup, find_packages
from setuptools.command.build_py import build_py as _build_py
diff --git a/setuptools/__init__.py b/setuptools/__init__.py
index 5920170b..e93245ab 100644
--- a/setuptools/__init__.py
+++ b/setuptools/__init__.py
@@ -8,7 +8,7 @@ from distutils.util import convert_path
import os
import sys
-__version__ = '0.7.6'
+__version__ = '0.7.7'
__all__ = [
'setup', 'Distribution', 'Feature', 'Command', 'Extension', 'Require',
'find_packages'