Changeset 3cc0022
- Timestamp:
- Sep 30, 2017, 11:55:13 PM (7 years ago)
- 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:
- bf6df1c
- Parents:
- 92ab78e
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
.appveyor.yml
r92ab78e r3cc0022 8 8 # pre-installed python version, see: 9 9 # http://www.appveyor.com/docs/installed-software#python 10 - PYTHON : "C:\\Python27"10 - PYTHONDIR: "C:\\Python27" 11 11 PYTHON_VERSION: "2.7.x" 12 12 PYTHON_ARCH: "32" 13 13 14 - PYTHON : "C:\\Python27-x64"14 - PYTHONDIR: "C:\\Python27-x64" 15 15 PYTHON_VERSION: "2.7.x" 16 16 PYTHON_ARCH: "64" 17 17 18 - PYTHON : "C:\\Python34"18 - PYTHONDIR: "C:\\Python34" 19 19 PYTHON_VERSION: "3.4.x" 20 20 PYTHON_ARCH: "32" 21 21 22 - PYTHON : "C:\\Python34-x64"22 - PYTHONDIR: "C:\\Python34-x64" 23 23 PYTHON_VERSION: "3.4.x" 24 24 PYTHON_ARCH: "64" 25 25 26 - PYTHON : "C:\\Python35"26 - PYTHONDIR: "C:\\Python35" 27 27 PYTHON_VERSION: "3.5.x" 28 28 PYTHON_ARCH: "32" 29 29 30 - PYTHON : "C:\\Python35-x64"30 - PYTHONDIR: "C:\\Python35-x64" 31 31 PYTHON_VERSION: "3.5.x" 32 32 PYTHON_ARCH: "64" … … 40 40 41 41 # Check that we have the expected version and architecture for Python 42 - "%PYTHON %\\python.exe --version"43 - "%PYTHON %\\python.exe -c \"import struct; print(struct.calcsize('P') * 8)\""42 - "%PYTHONDIR%\\python.exe --version" 43 - "%PYTHONDIR%\\python.exe -c \"import struct; print(struct.calcsize('P') * 8)\"" 44 44 45 45 # We need wheel installed to build wheels 46 - "%PYTHON %\\python.exe -m pip install wheel"46 - "%PYTHONDIR%\\python.exe -m pip install wheel" 47 47 48 - "SET PATH=%PATH_EXTRAS%;%PYTHON %;%PYTHON%\\Scripts;%PATH%"48 - "SET PATH=%PATH_EXTRAS%;%PYTHONDIR%;%PYTHONDIR%\\Scripts;%PATH%" 49 49 50 50 - "pip install --disable-pip-version-check --user --upgrade pip" -
scripts/get_waf.sh
r92ab78e r3cc0022 23 23 tar xf $WAFTARBALL 24 24 pushd waf-$WAFVERSION 25 [ -x $PYTHON ] || PYTHON=`which python`26 25 NOCLIMB=1 python waf-light --tools=c_emscripten,syms $* 27 26
Note: See TracChangeset
for help on using the changeset viewer.