From 32733e08c053256d3197bebda3619a1f44cdb215 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Ho=C5=99e=C5=88ovsk=C3=BD?= Date: Wed, 13 Nov 2019 20:58:15 +0100 Subject: [PATCH] Use newer version of Python on AppVeyor --- appveyor.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 53f5b395..dfd44316 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,6 +1,11 @@ # version string format -- This will be overwritten later anyway version: "{build}" +# We need a more up to date pip because Python 2.7 is EOL soon +init: + - set PATH=C:\Python35\Scripts;%PATH% + + branches: except: - /dev-travis.+/ @@ -62,7 +67,7 @@ matrix: install: - - ps: if (($env:CONFIGURATION) -eq "Debug" -And ($env:coverage) -eq "1" ) { python -m pip --disable-pip-version-check install codecov } + - ps: if (($env:CONFIGURATION) -eq "Debug" -And ($env:coverage) -eq "1" ) { pip --disable-pip-version-check install codecov } - ps: if (($env:CONFIGURATION) -eq "Debug" -And ($env:coverage) -eq "1" ) { .\misc\installOpenCppCoverage.ps1 } # Win32 and x64 are CMake-compatible solution platform names.