File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments