Skip to content

Commit 683eafe

Browse files
authored
Test against pip==23.1 (#180)
1 parent fb75372 commit 683eafe

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

tests/test_installed_distributions.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ def test_installed_distributions_editable(pip, some_editable_distribution):
5959
assert distribution.editable
6060

6161

62+
@pytest.mark.xfail(pip_api.PIP_VERSION >= parse("23.1"), reason="Unsupported")
6263
def test_installed_distributions_legacy_version(pip, data):
6364
# Use an older setuptools to build this with a legacy version
6465
pip.run("install", "setuptools<66")

tox.ini

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[tox]
22
envlist=
3-
py37-pip{2301,230,2231,223,2222,2221,222,2212,2211,221,2204,2203,2202,2201,220,2131,213,2124,2123,2122,2121,212,2113,2112,2111,211,2101,210,2034,2033,2031,203,2024,2023,2022,2021,202,201,2002,2001,1931,193,1923,1922,1921,192,1911,191,1903,1902,1901,190,181},
4-
py38-pip{2301,230,2231,223,2222,2221,222,2212,2211,221,2204,2203,2202,2201,220,2131,213,2124,2123,2122,2121,212,2113,2112,2111,211,2101,210,2034,2033,2031,203,2024,2023,2022,2021,202,201,2002,2001,1931},
5-
py39-pip{2301,230,2231,223,2222,2221,222,2212,2211,221,2204,2203,2202,2201,220,2131,213,2124,2123,2122,2121,212,2113,2112,2111,211,2101,210,2034,2033,2031,203},
6-
py310-pip{2301,230,2231,223,2222,2221,222,2212,2211,221,2204,2203,2202,2201,220,2131,213},
7-
py311-pip{2301,230,2231,223,2222,2221,222},
3+
py37-pip{231,2301,230,2231,223,2222,2221,222,2212,2211,221,2204,2203,2202,2201,220,2131,213,2124,2123,2122,2121,212,2113,2112,2111,211,2101,210,2034,2033,2031,203,2024,2023,2022,2021,202,201,2002,2001,1931,193,1923,1922,1921,192,1911,191,1903,1902,1901,190,181},
4+
py38-pip{231,2301,230,2231,223,2222,2221,222,2212,2211,221,2204,2203,2202,2201,220,2131,213,2124,2123,2122,2121,212,2113,2112,2111,211,2101,210,2034,2033,2031,203,2024,2023,2022,2021,202,201,2002,2001,1931},
5+
py39-pip{231,2301,230,2231,223,2222,2221,222,2212,2211,221,2204,2203,2202,2201,220,2131,213,2124,2123,2122,2121,212,2113,2112,2111,211,2101,210,2034,2033,2031,203},
6+
py310-pip{231,2301,230,2231,223,2222,2221,222,2212,2211,221,2204,2203,2202,2201,220,2131,213},
7+
py311-pip{231,2301,230,2231,223,2222,2221,222},
88
lint
99

1010
[testenv]
@@ -13,6 +13,7 @@ deps=
1313
pretend
1414
pytest
1515
virtualenv>20
16+
pip231: pip==23.1
1617
pip2301: pip==23.0.1
1718
pip230: pip==23.0
1819
pip2231: pip==22.3.1

0 commit comments

Comments
 (0)