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,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
You can’t perform that action at this time.
0 commit comments