Skip to content

Commit

Permalink
Merge eed467c into 031b408
Browse files Browse the repository at this point in the history
  • Loading branch information
kohr-h committed Jul 19, 2018
2 parents 031b408 + eed467c commit bb2f3bc
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,14 @@ install:

# Install dependencies and enter test environment. Use conda for the minimal stuff to
# make it run faster and avoid downloading big stuff like mkl
- conda create -n testenv python=$TRAVIS_PYTHON_VERSION nomkl pywavelets
- conda create -n testenv python=$TRAVIS_PYTHON_VERSION nomkl
- source activate testenv
# Install packages with pip if possible, it's way faster
- pip install "numpy==$NUMPY_VERSION" scipy future packaging scikit-image pytest pytest-cov;
# Building pyfftw wheels sometimes fails, using a conda-forge version instead
- conda install -c conda-forge pyfftw
- pip install "numpy==$NUMPY_VERSION" scipy future packaging scikit-image pywavelets pytest pytest-cov;
# Building pyfftw wheels sometimes fails, using a conda-forge version instead;
# To avoid a lower version of NumPy being installed over the pip one, we exclude all dependencies
# (PyFFTW only depends on NumPy)
- conda install -c conda-forge --no-deps pyfftw

# Doc dependencies
- if [[ "$BUILD_DOCS" == "true" ]]; then
Expand Down

0 comments on commit bb2f3bc

Please sign in to comment.