aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2013-07-08 09:15:39 -0400
committerJason R. Coombs <jaraco@jaraco.com>2013-07-08 09:15:39 -0400
commit5ae92f8fba0d7fe8d59477011816c0aef7b25db7 (patch)
treeb0c4a8f67210f2252fd67e64096346719b424d1e
parente8aebd11d3f1c50140ae8143a29387b8f5280393 (diff)
downloadexternal_python_setuptools-5ae92f8fba0d7fe8d59477011816c0aef7b25db7.tar.gz
external_python_setuptools-5ae92f8fba0d7fe8d59477011816c0aef7b25db7.tar.bz2
external_python_setuptools-5ae92f8fba0d7fe8d59477011816c0aef7b25db7.zip
Point to permalink for ez_setup.py in README. Fixes #25.
-rwxr-xr-xREADME.txt8
-rw-r--r--release.py2
2 files changed, 5 insertions, 5 deletions
diff --git a/README.txt b/README.txt
index 2fa3d872..0a3bb21d 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.9/ez_setup.py
+.. _ez_setup.py: https://bitbucket.org/pypa/setuptools/downloads/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.9/ez_setup.py -O - | python
+ > wget https://bitbucket.org/pypa/setuptools/downloads/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.9/ez_setup.py
+ > wget https://bitbucket.org/pypa/setuptools/downloads/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.9$ python setup.py --prefix=/opt/setuptools
+ setuptools-x.x$ 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/release.py b/release.py
index d54b2495..152f0d9a 100644
--- a/release.py
+++ b/release.py
@@ -68,7 +68,7 @@ def infer_next_version(version):
return re.sub('\d*$', incr, version)
files_with_versions = (
- 'docs/conf.py', 'setup.py', 'release.py', 'ez_setup.py', 'README.txt',
+ 'docs/conf.py', 'setup.py', 'release.py', 'ez_setup.py',
'setuptools/__init__.py',
)