diff options
-rw-r--r-- | CHANGES.txt | 6 | ||||
-rw-r--r-- | setuptools/tests/test_easy_install.py | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index 29843abb..5e024d13 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -3,6 +3,12 @@ CHANGES ======= ------ +0.6.32 +------ + +* Fix test suite with Python 2.6. + +------ 0.6.31 ------ diff --git a/setuptools/tests/test_easy_install.py b/setuptools/tests/test_easy_install.py index 1540bdc6..7ed0cd37 100644 --- a/setuptools/tests/test_easy_install.py +++ b/setuptools/tests/test_easy_install.py @@ -386,7 +386,7 @@ class TestSetupRequires(unittest.TestCase): 'VersionConflict') lines = stdout.splitlines() - self.assertGreater(len(lines), 0) + self.assertTrue(len(lines) > 0) self.assert_(lines[-1].strip(), 'test_pkg') try: |