ref: 981e0a384c356e960b3a0959617e3a65f33801d0
parent: 073b969eede202a14740fe4d68dbe0a7e0acba0e
author: Paul Brossier <piem@piem.org>
date: Mon Sep 24 18:41:52 EDT 2018
.appveyor.yml: set path first, remove extension
--- a/.appveyor.yml
+++ b/.appveyor.yml
@@ -44,17 +44,17 @@
- 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"