From: Paul Brossier Date: Thu, 25 Aug 2016 15:39:36 +0000 (+0200) Subject: .appveyor.yml: fix path for windows+python 3.5 X-Git-Tag: 0.4.4~256 X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=c785cc2c4c9813dbf29cccb78404918dd98f6173;p=aubio.git .appveyor.yml: fix path for windows+python 3.5 --- 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"