1
1
Fork 0
mirror of https://github.com/pypa/pip synced 2023-12-13 21:30:23 +01:00

We have no deprecated versions of Python now

This commit is contained in:
Pradyun Gedam 2020-11-30 20:57:40 +00:00
parent 7281ed9d98
commit 79f1b59335
No known key found for this signature in database
GPG key ID: FF99710C4332258E

View file

@ -496,7 +496,7 @@ def in_memory_pip():
@pytest.fixture(scope="session")
def deprecated_python():
"""Used to indicate whether pip deprecated this Python version"""
return sys.version_info[:2] in [(2, 7), (3, 5)]
return sys.version_info[:2] in []
@pytest.fixture(scope="session")