Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,25 +16,29 @@ matrix:
env:
- NUMPYSPEC=numpy
- MATPLOTLIBSPEC=matplotlib
- CYTHONSPEC=cython
- USE_WHEEL=1
- os: linux
python: 3.7-dev
env:
- NUMPYSPEC=numpy
- MATPLOTLIBSPEC=matplotlib
- CYTHONSPEC=cython
- USE_SDIST=1
- os: linux
python: 3.5
env:
- NUMPYSPEC="numpy==1.13.3"
- MATPLOTLIBSPEC=matplotlib
- CYTHONSPEC="cython==0.23.5"
- REFGUIDE_CHECK=1 # run doctests only
- os: osx
osx_image: xcode7.3
language: objective-c
env:
- NUMPYSPEC=numpy
- MATPLOTLIBSPEC=matplotlib
- CYTHONSPEC=cython
- TRAVIS_PYTHON_VERSION=3.5

cache: pip
Expand All @@ -51,7 +55,8 @@ before_install:
# Set numpy version first, other packages link against it
- pip install $NUMPYSPEC
- pip install $MATPLOTLIBSPEC
- pip install Cython nose coverage codecov futures
- pip install $CYTHONSPEC
- pip install nose coverage codecov futures
- set -o pipefail
- if [ "${USE_WHEEL}" == "1" ]; then pip install wheel; fi
- |
Expand Down
2 changes: 1 addition & 1 deletion doc/source/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ The requirements needed to build from source are:

- Python_ 2.7 or >=3.4
- Numpy_ >= 1.13.3
- Cython_ >= 0.20.2 (if installing from git, not from a PyPI source release)
- Cython_ >= 0.23.5 (if installing from git, not from a PyPI source release)

To run all the tests for PyWavelets, you will also need to install the
Matplotlib_ package.
Expand Down
2 changes: 1 addition & 1 deletion util/readthedocs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
numpy
Cython==0.20.2
cython
nose
wheel
numpydoc
Expand Down