diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2015-01-01 18:12:40 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2015-01-01 18:12:40 -0500 |
commit | a5b9b91081943cb771a3fc7b5873410599513332 (patch) | |
tree | bb828eb54eaffe9499ec59b7d554b276b639f6ed /setuptools/tests/test_develop.py | |
parent | 0ef90459f8c249a53a0c5e9daaa8a4cf407f7fe9 (diff) | |
download | external_python_setuptools-a5b9b91081943cb771a3fc7b5873410599513332.tar.gz external_python_setuptools-a5b9b91081943cb771a3fc7b5873410599513332.tar.bz2 external_python_setuptools-a5b9b91081943cb771a3fc7b5873410599513332.zip |
Remove consideration for older Pythons
Diffstat (limited to 'setuptools/tests/test_develop.py')
-rw-r--r-- | setuptools/tests/test_develop.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/setuptools/tests/test_develop.py b/setuptools/tests/test_develop.py index 9d8a56c3..890880dc 100644 --- a/setuptools/tests/test_develop.py +++ b/setuptools/tests/test_develop.py @@ -25,7 +25,7 @@ INIT_PY = """print "foo" class TestDevelopTest: def setup_method(self, method): - if sys.version < "2.6" or hasattr(sys, 'real_prefix'): + if hasattr(sys, 'real_prefix'): return # Directory structure @@ -50,7 +50,7 @@ class TestDevelopTest: site.USER_SITE = tempfile.mkdtemp() def teardown_method(self, method): - if sys.version < "2.6" or hasattr(sys, 'real_prefix') or (hasattr(sys, 'base_prefix') and sys.base_prefix != sys.prefix): + if hasattr(sys, 'real_prefix') or (hasattr(sys, 'base_prefix') and sys.base_prefix != sys.prefix): return os.chdir(self.old_cwd) @@ -61,7 +61,7 @@ class TestDevelopTest: site.USER_SITE = self.old_site def test_develop(self): - if sys.version < "2.6" or hasattr(sys, 'real_prefix'): + if hasattr(sys, 'real_prefix'): return dist = Distribution( dict(name='foo', |