diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2021-02-26 20:05:37 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2021-02-27 13:51:57 -0500 |
commit | 3d3c69e3800e66de8e6e3b5fc5672886f2b1068e (patch) | |
tree | 9ad74fc772f40d9e0eb82a6528747c52c4ed9a74 | |
parent | 7f838213da6d49c59e11aef6b8ebe0fcbc113801 (diff) | |
download | python-setuptools-git-3d3c69e3800e66de8e6e3b5fc5672886f2b1068e.tar.gz |
Remove pip 19 from the upgrade from source tests.
-rw-r--r-- | setuptools/tests/test_virtualenv.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/setuptools/tests/test_virtualenv.py b/setuptools/tests/test_virtualenv.py index fcd5da5d..ea74ebe2 100644 --- a/setuptools/tests/test_virtualenv.py +++ b/setuptools/tests/test_virtualenv.py @@ -69,7 +69,9 @@ def _get_pip_versions(): 'pip==9.0.3', 'pip==10.0.1', 'pip==18.1', - 'pip==19.0.1', + # fails due to pypa/pip#6599 + # 'pip==19.3.1', + 'pip==20.0.2', 'https://github.com/pypa/pip/archive/master.zip', ] |