diff options
author | m0sia <m0sia@m0sia.ru> | 2018-03-21 15:54:50 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-21 15:54:50 -0500 |
commit | d5c215f115d7a2fce8ae449f20efba7f04c76086 (patch) | |
tree | 13d5d52bdad583fb330c7be5c831dcbb697c7aa8 | |
parent | 18e0631ddc0d0780174f437a0452f91defbfe24f (diff) | |
download | pyParrotZikTCP-d5c215f115d7a2fce8ae449f20efba7f04c76086.tar.xz pyParrotZikTCP-d5c215f115d7a2fce8ae449f20efba7f04c76086.zip |
Update appveyor.yml
Diffstat (limited to '')
-rw-r--r-- | appveyor.yml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/appveyor.yml b/appveyor.yml index 4546b10..f7e6a4d 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,10 +1,16 @@ environment: matrix: - - PYTHON: "C:\\Python34" + - PYTHON: "C:\\Python27" install: - "%PYTHON%\\python.exe -m pip install -r requirements.txt" + - ps: if (-not (Test-Path pygtk-all-in-one-2.24.2.win32-py2.7.msi)) { Start-FileDownload "https://ftp.gnome.org/pub/GNOME/binaries/win32/pygtk/2.24/pygtk-all-in-one-2.24.2.win32-py2.7.msi" } + - ps: Get-FileHash pygtk-all-in-one-2.24.2.win32-py2.7.msi -Algorithm MD5 # 4bddf847f81d8de2d73048b113da3dd5 + - 'msiexec /i pygtk-all-in-one-2.24.2.win32-py2.7.msi /qn /norestart /log pygtk-install.log TARGETDIR=C:\Python27 ALLUSERS=1' + +cache: + - pygtk-all-in-one-2.24.2.win32-py2.7.msi build: off |