From 981e0a384c356e960b3a0959617e3a65f33801d0 Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Mon, 24 Sep 2018 22:41:52 +0200 Subject: [PATCH] .appveyor.yml: set path first, remove extension --- .appveyor.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index cb3ef4c0..71884194 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -44,17 +44,17 @@ install: - ECHO "Installed SDKs:" - ps: "ls \"C:/Program Files/Microsoft SDKs/Windows\"" + - "SET PATH=%PYTHONDIR%;%PYTHONDIR%\\Scripts;%PATH%" + # Check that we have the expected version and architecture for Python - - "%PYTHONDIR%\\python.exe --version" - - "%PYTHONDIR%\\python.exe -c \"import struct; print(struct.calcsize('P') * 8)\"" + - "python --version" + - "python -c \"import struct; print(struct.calcsize('P') * 8)\"" - - "%PYTHONDIR%\\python.exe -m pip install --disable-pip-version-check --user --upgrade pip" - - "%PYTHONDIR%\\python.exe -m pip install --upgrade setuptools" + - "python -m pip install --disable-pip-version-check --user --upgrade pip" + - "python -m pip install --upgrade setuptools" # We need wheel installed to build wheels - - "%PYTHONDIR%\\python.exe -m pip install wheel" - - - "SET PATH=%PYTHONDIR%;%PYTHONDIR%\\Scripts;%PATH%" + - "python -m pip install wheel" before_build: - "bash scripts/get_waf.sh" -- 2.11.0