Skip to content

Commit 2303caf

Browse files
committed
No need to install wheel any more
setuptools has had a native bdist_wheel since 70.1.0: https://setuptools.pypa.io/en/latest/history.html#v70-1-0
1 parent 2b81170 commit 2303caf

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

testing/cffi0/test_zintegration.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ def create_venv(name):
1717
try:
1818
# FUTURE: we should probably update this to use venv for at least more modern Pythons, and
1919
# install setuptools/pip/etc explicitly for the tests that require them (as venv has stopped including
20-
# setuptools and wheel by default for newer versions).
20+
# setuptools by default for newer versions).
2121
subprocess.check_call(['virtualenv',
2222
#'--never-download', <= could be added, but causes failures
2323
# in random cases on random machines
2424
'-p', os.path.abspath(sys.executable),
2525
str(tmpdir)])
2626

27-
# Python 3.12 venv/virtualenv no longer include setuptools and wheel by default, which
27+
# Python 3.12 venv/virtualenv no longer include setuptools by default, which
2828
# breaks a number of these tests; ensure it's always present for 3.12+
2929
if sys.version_info >= (3, 12):
3030
subprocess.check_call([
@@ -33,7 +33,6 @@ def create_venv(name):
3333
'pip',
3434
'install',
3535
'setuptools',
36-
'wheel',
3736
'--upgrade'
3837
])
3938

0 commit comments

Comments
 (0)