diff options
author | Nikolaus Waxweiler <madigens@gmail.com> | 2018-10-27 11:39:30 +0100 |
---|---|---|
committer | Paul Ganssle <paul@ganssle.io> | 2018-10-27 07:34:45 -0400 |
commit | 98056a680fde6bede9ce4c159b72d1ac01bf9067 (patch) | |
tree | 0a0334a57b904e695a0458034234b206bfeb0c32 /setuptools/tests/test_virtualenv.py | |
parent | d3215c10b6f9ccd8940f9345642ee0718f158585 (diff) | |
download | external_python_setuptools-98056a680fde6bede9ce4c159b72d1ac01bf9067.tar.gz external_python_setuptools-98056a680fde6bede9ce4c159b72d1ac01bf9067.tar.bz2 external_python_setuptools-98056a680fde6bede9ce4c159b72d1ac01bf9067.zip |
Remove pytest marker and code for Python < 2.7
Diffstat (limited to 'setuptools/tests/test_virtualenv.py')
-rw-r--r-- | setuptools/tests/test_virtualenv.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/setuptools/tests/test_virtualenv.py b/setuptools/tests/test_virtualenv.py index b66a311d..e511c918 100644 --- a/setuptools/tests/test_virtualenv.py +++ b/setuptools/tests/test_virtualenv.py @@ -57,9 +57,6 @@ def test_pip_upgrade_from_source(virtualenv): Check pip can upgrade setuptools from source. """ dist_dir = virtualenv.workspace - if sys.version_info < (2, 7): - # Python 2.6 support was dropped in wheel 0.30.0. - virtualenv.run('pip install -U "wheel<0.30.0"') # Generate source distribution / wheel. virtualenv.run(' && '.join(( 'cd {source}', |