ci/install: Fix updating of pip on Appveyor
Windows can't update pip when using the wrapper-executable.
This commit is contained in:
parent
7141941ece
commit
14eb63d9e9
@ -110,7 +110,7 @@ if 'APPVEYOR' in os.environ:
|
||||
print("Installing PyQt5...")
|
||||
subprocess.check_call([r'C:\install-PyQt5.exe', '/S'])
|
||||
|
||||
folded_cmd([r'C:\Python34\Scripts\pip', 'install', '-U', 'pip'])
|
||||
folded_cmd([r'C:\Python34\python', '-m', 'pip', 'install', '-U', 'pip'])
|
||||
folded_cmd([r'C:\Python34\Scripts\pip', 'install', '-U'] + pip_packages)
|
||||
|
||||
print("Linking Python...")
|
||||
|
Loading…
Reference in New Issue
Block a user