summaryrefslogtreecommitdiff
path: root/setuptools/tests
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2022-12-16 14:20:17 -0500
committerJason R. Coombs <jaraco@jaraco.com>2022-12-16 14:20:17 -0500
commit23ddb70f499197b9a0b230b78b8a0c1bf3f05874 (patch)
tree40933ceac2db218262370dd376d248f4106d0a95 /setuptools/tests
parent181d7202220d8d574ed873d5cb6b209741a5b7f6 (diff)
downloadpython-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.py3
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'),