1 file changed +29
-0
lines changed Original file line number Diff line number Diff line change
1
+ matrix :
2
+ - PYTHON : " C:\\ Python27.10-x64"
3
+ PYTHON_VERSION : " 2.7.10"
4
+ PYTHON_ARCH : " 64"
5
+
1
6
install :
7
+ - ECHO "Filesystem root:"
8
+ - ps : " ls \" C:/\" "
9
+
10
+ - ECHO "Installed SDKs:"
11
+ - ps : " ls \" C:/Program Files/Microsoft SDKs/Windows\" "
12
+
13
+ # Install Python (from the official .msi of http://python.org) and pip when
14
+ # not already installed.
15
+ - ps : if (-not(Test-Path($env:PYTHON))) { & appveyor\install.ps1 }
16
+
17
+ # Prepend newly installed Python to the PATH of this build (this cannot be
18
+ # done from inside the powershell script as it would require to restart
19
+ # the parent CMD process).
20
+ - " SET PATH=%PYTHON%;%PYTHON%\\ Scripts;%PATH%"
21
+
22
+ # Check that we have the expected version and architecture for Python
23
+ - " python --version"
24
+ - " python -c \" import struct; print(struct.calcsize('P') * 8)\" "
25
+
26
+ # Upgrade to the latest version of pip to avoid it displaying warnings
27
+ # about it being out of date.
28
+ - " pip install --disable-pip-version-check --user --upgrade pip"
29
+
30
+ # Install Python Qt5
2
31
- pip install git+git://github.com/pyqt/python-qt5.git
0 commit comments