From c785cc2c4c9813dbf29cccb78404918dd98f6173 Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Thu, 25 Aug 2016 17:39:36 +0200 Subject: [PATCH] .appveyor.yml: fix path for windows+python 3.5 --- .appveyor.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.appveyor.yml b/.appveyor.yml index a0ad7f87..21dad545 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -30,6 +30,8 @@ environment: - PYTHON: "C:\\Python35-x64" PYTHON_VERSION: "3.5.x" PYTHON_ARCH: "64" + # add path required to run preprocessor step + PATH_EXTRAS: "c:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\VC\\bin" install: @@ -43,7 +45,7 @@ install: # We need wheel installed to build wheels - "%PYTHON%\\python.exe -m pip install wheel" - - "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%" + - "SET PATH=%PATH_EXTRAS%;%%PYTHON%;%PYTHON%\\Scripts;%PATH%" - "pip install --disable-pip-version-check --user --upgrade pip" - "pip install --upgrade setuptools" -- 2.11.0