aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.hgtags1
-rw-r--r--CHANGES.txt2
-rwxr-xr-xREADME.txt2
-rwxr-xr-xsetup.py2
4 files changed, 3 insertions, 4 deletions
diff --git a/.hgtags b/.hgtags
index e08a06c2..cc2b4225 100644
--- a/.hgtags
+++ b/.hgtags
@@ -62,3 +62,4 @@ ddca71ae5ceb9b14512dc60ea83802c10e224cf0 0.6.45
7f2c08e9ca22023d1499c512fccc1513813b7dc4 0.7
024dd30ed702135f5328975042566e48cc479d7d 0.7.1
d04c05f035e3a5636006fc34f4be7e6c77035d17 0.7.2
+d212e48e0cef689acba57ed017289c027660b23c 0.7.3
diff --git a/CHANGES.txt b/CHANGES.txt
index d75d769f..00bef01b 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -13,8 +13,6 @@ CHANGES
0.7.3
-----
-* Rename DISTRIBUTE_DISABLE_VERSIONED_EASY_INSTALL_SCRIPT environment
- variable to SETUPTOOLS_DISABLE_VERSIONED_EASY_INSTALL_SCRIPT.
* Issue #1: Disable installation of Windows-specific files on non-Windows systems.
* Use new sysconfig module with Python 2.7 or >=3.2.
diff --git a/README.txt b/README.txt
index 10cde2cf..7fe2d64a 100755
--- a/README.txt
+++ b/README.txt
@@ -12,7 +12,7 @@ Installation Instructions
Upgrading from Distribute
=========================
-Currently, Distribute disallows installing Setuptools 0.8 over Distribute.
+Currently, Distribute disallows installing Setuptools 0.7+ over Distribute.
You must first uninstall any active version of Distribute first (see
`Uninstalling`_).
diff --git a/setup.py b/setup.py
index c88e6c75..8afdf235 100755
--- a/setup.py
+++ b/setup.py
@@ -56,7 +56,7 @@ from setuptools.command.test import test as _test
scripts = []
console_scripts = ["easy_install = setuptools.command.easy_install:main"]
-if os.environ.get("SETUPTOOLS_DISABLE_VERSIONED_EASY_INSTALL_SCRIPT") is None:
+if os.environ.get("DISTRIBUTE_DISABLE_VERSIONED_EASY_INSTALL_SCRIPT") is None:
console_scripts.append("easy_install-%s = setuptools.command.easy_install:main" % sys.version[:3])
# specific command that is used to generate windows .exe files