We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f450469 commit 46dc02cCopy full SHA for 46dc02c
setuptools/tests/test_virtualenv.py
@@ -56,8 +56,20 @@ def access_pypi():
56
[
57
None,
58
pytest.param('pip<20', marks=pytest.mark.xfail(reason='pypa/pip#6599')),
59
- 'pip<20.1',
60
- 'pip<21',
+ pytest.param(
+ 'pip<20.1',
61
+ marks=pytest.mark.xfail(
62
+ 'sys.version_info > (3, 12)',
63
+ reason="pip 21 requried for Python 3.12 and later",
64
+ ),
65
66
67
+ 'pip<21',
68
69
70
71
72
73
'pip<22',
74
pytest.param(
75
'https://github.com/pypa/pip/archive/main.zip',
0 commit comments