diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2013-06-18 16:17:53 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2013-06-18 16:17:53 -0500 |
commit | ebdb9b5afe822aaaa8eb8c969e017e0cba14084f (patch) | |
tree | 3d5e96a26df13b60d1a23ed0e690417e696088a9 | |
parent | f17e432dd427e2f894232e57a6b47143f85f7d97 (diff) | |
parent | 16b2bc31e07f8fa14d27bc504dc0bbc73da900be (diff) | |
download | external_python_setuptools-ebdb9b5afe822aaaa8eb8c969e017e0cba14084f.tar.gz external_python_setuptools-ebdb9b5afe822aaaa8eb8c969e017e0cba14084f.tar.bz2 external_python_setuptools-ebdb9b5afe822aaaa8eb8c969e017e0cba14084f.zip |
Merge 0.7.3 release0.8b1
-rw-r--r-- | .hgtags | 1 | ||||
-rw-r--r-- | CHANGES.txt | 2 | ||||
-rwxr-xr-x | README.txt | 2 | ||||
-rwxr-xr-x | setup.py | 2 |
4 files changed, 3 insertions, 4 deletions
@@ -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. @@ -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`_). @@ -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 |