Skip to content

Commit 7166833

Browse files
stefanormattip
authored andcommitted
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 b4bbe79 commit 7166833

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,22 +17,21 @@ 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-
# Newer venv/virtualenv no longer include setuptools and wheel by default, which
27+
# Newer venv/virtualenv no longer include setuptools by default, which
2828
# breaks a number of these tests; ensure they're always present
2929
subprocess.check_call([
3030
os.path.join(tmpdir, 'bin/python'),
3131
'-m',
3232
'pip',
3333
'install',
3434
'setuptools',
35-
'wheel',
3635
'--upgrade'
3736
])
3837

0 commit comments

Comments
 (0)