diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2022-12-16 14:20:17 -0500 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2022-12-16 14:20:17 -0500 |
| commit | 23ddb70f499197b9a0b230b78b8a0c1bf3f05874 (patch) | |
| tree | 40933ceac2db218262370dd376d248f4106d0a95 /setuptools/tests | |
| parent | 181d7202220d8d574ed873d5cb6b209741a5b7f6 (diff) | |
| download | python-setuptools-git-23ddb70f499197b9a0b230b78b8a0c1bf3f05874.tar.gz | |
Add support for testing pip<23 and drop support for pip<20.
Diffstat (limited to 'setuptools/tests')
| -rw-r--r-- | setuptools/tests/test_virtualenv.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/setuptools/tests/test_virtualenv.py b/setuptools/tests/test_virtualenv.py index 0942ff09..acfe04e9 100644 --- a/setuptools/tests/test_virtualenv.py +++ b/setuptools/tests/test_virtualenv.py @@ -55,7 +55,6 @@ def access_pypi(): 'pip_version', [ None, - pytest.param('pip<20', marks=pytest.mark.xfail(reason='pypa/pip#6599')), pytest.param( 'pip<20.1', marks=pytest.mark.xfail( @@ -77,7 +76,7 @@ def access_pypi(): reason="pip 22 requried for Python 3.12 and later", ), ), - # 'pip<23', + 'pip<23', pytest.param( 'https://github.com/pypa/pip/archive/main.zip', marks=pytest.mark.xfail(reason='#2975'), |
