Changes in / [4c9aa80:8197dbd]
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
.appveyor.yml
r4c9aa80 r8197dbd 16 16 PYTHON_ARCH: 64 17 17 18 - PYTHONDIR: C:\Python3519 PYTHON_VERSION: 3.5.x20 PYTHON_ARCH: 3221 22 - PYTHONDIR: C:\Python35-x6423 PYTHON_VERSION: 3.5.x24 PYTHON_ARCH: 6425 26 18 - PYTHONDIR: C:\Python36 27 19 PYTHON_VERSION: 3.6.x … … 38 30 - PYTHONDIR: C:\Python37-x64 39 31 PYTHON_VERSION: 3.7.x 32 PYTHON_ARCH: 64 33 34 - PYTHONDIR: C:\Python38 35 PYTHON_VERSION: 3.8.x 36 PYTHON_ARCH: 32 37 38 - PYTHONDIR: C:\Python38-x64 39 PYTHON_VERSION: 3.8.x 40 40 PYTHON_ARCH: 64 41 41 -
.circleci/config.yml
r4c9aa80 r8197dbd 67 67 path: dist/ 68 68 69 build- 37:69 build-latest: 70 70 docker: 71 - image: circleci/python: 3.771 - image: circleci/python:latest 72 72 steps: 73 73 - checkout … … 81 81 path: dist/ 82 82 83 build- 37-nodeps:83 build-latest-nodeps: 84 84 docker: 85 - image: circleci/python: 3.785 - image: circleci/python:latest 86 86 steps: 87 87 - checkout … … 101 101 - build-27 102 102 - build-36 103 - build- 37104 - build- 37-nodeps103 - build-latest 104 - build-latest-nodeps -
.travis.yml
r4c9aa80 r8197dbd 3 3 matrix: 4 4 include: 5 - python: 3.6 5 - name: "Linux (Python 3.8)" 6 python: 3.8 6 7 os: linux 7 compiler: gcc 8 - python: 3.5 8 distro: bionic 9 - name: "Linux (Python 3.6)" 10 python: 3.6 9 11 os: linux 10 compiler: gcc11 12 env: WAFOPTS="--build-type=debug" 12 - python: 2.7 13 - name: "Linux (Python 2.7)" 14 python: 2.7 13 15 os: linux 14 compiler: gcc 15 - python: "pypy3.5" 16 distro: trusty 17 - name: "Linux (Python pypy3.5)" 18 language: python 19 python: "pypy3.5" 16 20 os: linux 17 compiler: gcc 18 env: CFLAGS="-Os" WAFOPTS="--disable-avcodec" 19 - python: 3.6 21 - name: "Linux (fftw3, no other deps)" 22 python: 3.8 20 23 os: linux 21 compiler: gcc 22 env: CFLAGS="-Os" WAFOPTS="--disable-samplerate" 23 - python: 3.5 24 env: HAVE_AUBIO_DOUBLE=1 CFLAGS="-O3" WAFOPTS="--enable-fftw3 --disable-avcodec --disable-samplerate" 25 - name: "Linux (default, dpkg-buildflags)" 24 26 os: linux 25 compiler: gcc26 env: HAVE_AUBIO_DOUBLE=1 CFLAGS="-O3" WAFOPTS="--enable-fftw3"27 - python: 2.728 os: linux29 compiler: gcc30 27 env: CFLAGS="`dpkg-buildflags --get CFLAGS`" LDFLAGS="`dpkg-buildflags --get LDFLAGS`" 31 - language: C 28 29 - name: "macOS (xcode11)" 30 language: shell 32 31 os: osx 33 compiler: clang 34 - language: C 32 osx_image: xcode11 33 - name: "macOS (xcode12, lib only)" 34 language: shell 35 35 os: osx 36 compiler: clang 37 env: CFLAGS="-Os" HAVE_AUBIO_DOUBLE=1 WAFOPTS="--disable-accelerate" 38 - language: C 36 osx_image: xcode12 37 script: 38 - make test_lib_only_clean 39 - name: "macOS (xcode10, noopt, nodeps)" 40 language: shell 39 41 os: osx 40 compiler: clang 41 env: WAFOPTS="--enable-fat --disable-avcodec --disable-sndfile --disable-samplerate --disable-rubberband" 42 - language: C 42 osx_image: xcode10 43 env: CFLAGS="-Os" HAVE_AUBIO_DOUBLE=1 WAFOPTS="--disable-accelerate --disable-avcodec --disable-sndfile --disable-samplerate --disable-rubberband" 44 - name: "iOS" 45 language: shell 43 46 os: osx 44 compiler: clang45 47 env: WAFOPTS="--with-target-platform=ios --disable-avcodec --disable-sndfile --disable-samplerate --disable-rubberband" AUBIO_NOTESTS=1 46 - language: C 48 - name: "iOSSimulator" 49 language: shell 47 50 os: osx 48 compiler: clang49 51 env: WAFOPTS="--with-target-platform=iosimulator --disable-avcodec --disable-sndfile --disable-samplerate --disable-rubberband" AUBIO_NOTESTS=1 50 52 51 # use trusty 52 dist: trusty 53 sudo: required 53 # - name: "Windows (Python 3.8.0, lib only)" 54 # language: shell 55 # os: windows 56 # before_install: 57 # - choco install python --version 3.8.0 58 # - choco install make 59 # - python -m pip install --upgrade pip 60 # env: PATH=/c/Python38:/c/Python38/Scripts:$PATH AUBIO_NOTESTS=1 54 61 55 62 addons: … … 79 86 update: true 80 87 81 before_install:82 - |83 if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then84 export PATH="$HOME/Library/Python/2.7/bin/:$PATH"85 fi;86 87 88 install: 88 - | 89 if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then 90 alias pip=pip2 91 fi; 92 - travis_retry pip install --upgrade pip 93 - travis_retry make getwaf expandwaf deps_python 89 - make getwaf deps_python 94 90 - which pip 95 91 - pip --version -
python/ext/ufuncs.c
r4c9aa80 r8197dbd 4 4 typedef smpl_t (*aubio_unary_func_t)(smpl_t input); 5 5 6 static void aubio_PyUFunc_d_d(char **args, npy_intp *dimensions,7 npy_intp* steps, void* data)6 static void aubio_PyUFunc_d_d(char **args, const npy_intp *dimensions, 7 const npy_intp* steps, void* data) 8 8 { 9 9 npy_intp i; … … 23 23 } 24 24 25 static void aubio_PyUFunc_f_f_As_d_d(char **args, npy_intp *dimensions,26 npy_intp* steps, void* data)25 static void aubio_PyUFunc_f_f_As_d_d(char **args, const npy_intp *dimensions, 26 const npy_intp* steps, void* data) 27 27 { 28 28 npy_intp i; -
scripts/get_waf.sh
r4c9aa80 r8197dbd 4 4 #set -x 5 5 6 WAFVERSION=2.0. 176 WAFVERSION=2.0.20 7 7 WAFTARBALL=waf-$WAFVERSION.tar.bz2 8 8 WAFURL=https://waf.io/$WAFTARBALL
Note: See TracChangeset
for help on using the changeset viewer.