diff options
-rw-r--r-- | .hgtags | 1 | ||||
-rw-r--r-- | CHANGES.txt | 6 | ||||
-rwxr-xr-x | setuptools/package_index.py | 2 |
3 files changed, 8 insertions, 1 deletions
@@ -54,3 +54,4 @@ d737b2039c5f92af8000f78bbc80b6a5183caa97 0.6.39 ad107e9b4beea24516ac4e1e854696e586fe279d 0.6.41 f30167716b659f96c5e0b7ea3d5be2bcff8c0eac 0.6.42 8951daac6c1bc7b24c7fb054fd369f2c5b88cdb3 0.7b2 +35086ee286732b0f63d2be18d9f26f2734586e2d 0.6.43 diff --git a/CHANGES.txt b/CHANGES.txt index 614a8489..9796fd59 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -21,6 +21,12 @@ Added several features that were slated for setuptools 0.6c12: an HTTPS service. ------ +0.6.43 +------ + +* Issue #378: Restore support for Python 2.4 Syntax (regression in 0.6.42). + +------ 0.6.42 ------ diff --git a/setuptools/package_index.py b/setuptools/package_index.py index 133677e8..4f39c70a 100755 --- a/setuptools/package_index.py +++ b/setuptools/package_index.py @@ -12,7 +12,7 @@ try: except ImportError: from md5 import md5 from fnmatch import translate -from .py24compat import wraps +from setuptools.py24compat import wraps from setuptools.py27compat import get_all_headers EGG_FRAGMENT = re.compile(r'^egg=([-A-Za-z0-9_.]+)$') |