Changeset ac26526


Ignore:
Timestamp:
Aug 6, 2018, 5:29:00 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:
a4e5a1a
Parents:
e8fcc9a
Message:

.appveyor.yml: upgrade pip first, always use python -m pip

File:
1 edited

Legend:

Unmodified
Added
Removed
  • .appveyor.yml

    re8fcc9a rac26526  
    4343  - "%PYTHONDIR%\\python.exe -c \"import struct; print(struct.calcsize('P') * 8)\""
    4444
     45  - "%PYTHONDIR%\\python.exe -m pip install --disable-pip-version-check --user --upgrade pip"
     46  - "%PYTHONDIR%\\python.exe -m pip install --upgrade setuptools"
     47
    4548  # We need wheel installed to build wheels
    4649  - "%PYTHONDIR%\\python.exe -m pip install wheel"
    4750
    4851  - "SET PATH=%PATH_EXTRAS%;%PYTHONDIR%;%PYTHONDIR%\\Scripts;%PATH%"
    49 
    50   - "pip install --disable-pip-version-check --user --upgrade pip"
    51   - "pip install --upgrade setuptools"
    5252
    5353before_build:
     
    5656build_script:
    5757  # build python module without using libaubio
    58   - "pip install -r requirements.txt"
     58  - "%PYTHONDIR%\\python.exe -m pip install -r requirements.txt"
    5959  - "python setup.py build"
    60   - "pip install ."
     60  - "%PYTHONDIR%\\python.exe -m pip install ."
    6161  - "python python\\demos\\demo_create_test_sounds.py"
    6262  - "nose2 --verbose"
Note: See TracChangeset for help on using the changeset viewer.