Changeset 981e0a38


Ignore:
Timestamp:
Sep 24, 2018, 10:41:52 PM (6 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master
Children:
205fe43
Parents:
073b969
Message:

.appveyor.yml: set path first, remove extension

File:
1 edited

Legend:

Unmodified
Added
Removed
  • .appveyor.yml

    r073b969 r981e0a38  
    4545  - ps: "ls \"C:/Program Files/Microsoft SDKs/Windows\""
    4646
     47  - "SET PATH=%PYTHONDIR%;%PYTHONDIR%\\Scripts;%PATH%"
     48
    4749  # Check that we have the expected version and architecture for Python
    48   - "%PYTHONDIR%\\python.exe --version"
    49   - "%PYTHONDIR%\\python.exe -c \"import struct; print(struct.calcsize('P') * 8)\""
     50  - "python --version"
     51  - "python -c \"import struct; print(struct.calcsize('P') * 8)\""
    5052
    51   - "%PYTHONDIR%\\python.exe -m pip install --disable-pip-version-check --user --upgrade pip"
    52   - "%PYTHONDIR%\\python.exe -m pip install --upgrade setuptools"
     53  - "python -m pip install --disable-pip-version-check --user --upgrade pip"
     54  - "python -m pip install --upgrade setuptools"
    5355
    5456  # We need wheel installed to build wheels
    55   - "%PYTHONDIR%\\python.exe -m pip install wheel"
    56 
    57   - "SET PATH=%PYTHONDIR%;%PYTHONDIR%\\Scripts;%PATH%"
     57  - "python -m pip install wheel"
    5858
    5959before_build:
Note: See TracChangeset for help on using the changeset viewer.