|
20 | 20 | def expected_venv_pkgs() -> frozenset[str]:
|
21 | 21 | implementation = python_implementation()
|
22 | 22 | if implementation == "CPython": # pragma: cpython cover
|
23 |
| - expected = {"pip", "setuptools", "wheel"} |
| 23 | + expected = {"pip", "setuptools"} |
24 | 24 | elif implementation == "PyPy": # pragma: pypy cover
|
25 |
| - expected = {"cffi", "greenlet", "pip", "hpy", "readline", "setuptools", "wheel"} |
| 25 | + expected = {"cffi", "greenlet", "pip", "hpy", "readline", "setuptools"} |
26 | 26 | if sys.version_info >= (3, 10): # pragma: >=3.10 cover
|
27 | 27 | expected -= {"readline"}
|
28 | 28 | else: # pragma: no cover
|
29 | 29 | raise ValueError(implementation)
|
30 | 30 | if sys.version_info >= (3, 12): # pragma: >=3.12 cover
|
31 |
| - expected -= {"setuptools", "wheel"} |
| 31 | + expected -= {"setuptools"} |
32 | 32 |
|
33 | 33 | return frozenset(expected)
|
34 | 34 |
|
@@ -73,9 +73,9 @@ def test_custom_interpreter_with_local_only(
|
73 | 73 | main()
|
74 | 74 | out, _ = capfd.readouterr()
|
75 | 75 | found = {i.split("==")[0] for i in out.splitlines()}
|
76 |
| - expected = {"pip", "setuptools", "wheel"} |
| 76 | + expected = {"pip", "setuptools"} |
77 | 77 | if sys.version_info >= (3, 12): # pragma: >=3.12 cover
|
78 |
| - expected -= {"setuptools", "wheel"} |
| 78 | + expected -= {"setuptools"} |
79 | 79 | assert expected == found, out
|
80 | 80 |
|
81 | 81 |
|
|
0 commit comments