ci/install: Fix updating of pip on Appveyor

Windows can't update pip when using the wrapper-executable.
This commit is contained in:
Florian Bruhin 2016-04-06 07:43:55 +02:00
parent 7141941ece
commit 14eb63d9e9

View File

@ -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...")