File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -16,25 +16,29 @@ matrix:
1616 env :
1717 - NUMPYSPEC=numpy
1818 - MATPLOTLIBSPEC=matplotlib
19+ - CYTHONSPEC=cython
1920 - USE_WHEEL=1
2021 - os : linux
2122 python : 3.7-dev
2223 env :
2324 - NUMPYSPEC=numpy
2425 - MATPLOTLIBSPEC=matplotlib
26+ - CYTHONSPEC=cython
2527 - USE_SDIST=1
2628 - os : linux
2729 python : 3.5
2830 env :
2931 - NUMPYSPEC="numpy==1.13.3"
3032 - MATPLOTLIBSPEC=matplotlib
33+ - CYTHONSPEC="cython==0.23.5"
3134 - REFGUIDE_CHECK=1 # run doctests only
3235 - os : osx
3336 osx_image : xcode7.3
3437 language : objective-c
3538 env :
3639 - NUMPYSPEC=numpy
3740 - MATPLOTLIBSPEC=matplotlib
41+ - CYTHONSPEC=cython
3842 - TRAVIS_PYTHON_VERSION=3.5
3943
4044cache : pip
@@ -51,7 +55,8 @@ before_install:
5155 # Set numpy version first, other packages link against it
5256 - pip install $NUMPYSPEC
5357 - pip install $MATPLOTLIBSPEC
54- - pip install Cython nose coverage codecov futures
58+ - pip install $CYTHONSPEC
59+ - pip install nose coverage codecov futures
5560 - set -o pipefail
5661 - if [ "${USE_WHEEL}" == "1" ]; then pip install wheel; fi
5762 - |
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ The requirements needed to build from source are:
4040
4141 - Python _ 2.7 or >=3.4
4242 - Numpy _ >= 1.13.3
43- - Cython _ >= 0.20.2 (if installing from git, not from a PyPI source release)
43+ - Cython _ >= 0.23.5 (if installing from git, not from a PyPI source release)
4444
4545To run all the tests for PyWavelets, you will also need to install the
4646Matplotlib _ package.
Original file line number Diff line number Diff line change 11numpy
2- Cython == 0.20.2
2+ cython
33nose
44wheel
55numpydoc
You can’t perform that action at this time.
0 commit comments