From: Paul Brossier Date: Mon, 6 Aug 2018 15:29:00 +0000 (+0200) Subject: .appveyor.yml: upgrade pip first, always use python -m pip X-Git-Tag: 0.4.7~31 X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=ac2652608e25582d843afbf3e7d9a6aaab6d1f8e;p=aubio.git .appveyor.yml: upgrade pip first, always use python -m pip --- diff --git a/.appveyor.yml b/.appveyor.yml index a39cd421..383b1cd7 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -42,22 +42,22 @@ install: - "%PYTHONDIR%\\python.exe --version" - "%PYTHONDIR%\\python.exe -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" + # We need wheel installed to build wheels - "%PYTHONDIR%\\python.exe -m pip install wheel" - "SET PATH=%PATH_EXTRAS%;%PYTHONDIR%;%PYTHONDIR%\\Scripts;%PATH%" - - "pip install --disable-pip-version-check --user --upgrade pip" - - "pip install --upgrade setuptools" - before_build: - "bash scripts/get_waf.sh" build_script: # build python module without using libaubio - - "pip install -r requirements.txt" + - "%PYTHONDIR%\\python.exe -m pip install -r requirements.txt" - "python setup.py build" - - "pip install ." + - "%PYTHONDIR%\\python.exe -m pip install ." - "python python\\demos\\demo_create_test_sounds.py" - "nose2 --verbose" # clean up