From: Paul Brossier Date: Mon, 24 Sep 2018 20:41:52 +0000 (+0200) Subject: .appveyor.yml: set path first, remove extension X-Git-Tag: 0.4.8~100^2~10 X-Git-Url: https://git.aubio.org/?p=aubio.git;a=commitdiff_plain;h=981e0a384c356e960b3a0959617e3a65f33801d0 .appveyor.yml: set path first, remove extension --- 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"