Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix CI #2348

Merged
merged 3 commits into from
Apr 3, 2020
Merged

Fix CI #2348

Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 4 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ env:
global:
- ENV=conda
- MINIMAL_ENV=false
- DEPS="numpy ipython scipy matplotlib-base traits natsort requests tqdm sympy dill h5py python-dateutil ipyparallel dask scikit-image pint numexpr statsmodels sparse imageio pyyaml PTable tifffile"
- DEPS="numpy ipython scipy matplotlib traits natsort requests tqdm sympy dill h5py python-dateutil ipyparallel dask scikit-image pint numexpr statsmodels sparse imageio pyyaml PTable tifffile"
- DEPS_OPTIONAL="scikit-learn mrcz numba cython"
- TEST_DEPS="pytest pytest-cov codecov pytest-mpl wheel"
- MPLBACKEND="agg"
Expand Down Expand Up @@ -51,6 +51,9 @@ install:
- if [[ $MINIMAL_ENV == false ]] ; then
DEPS="${DEPS} ${DEPS_OPTIONAL}";
fi
- if [[ $ENV == pip ]] ; then
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could you add some comments here explaining why this is needed?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This was to check that the pillow version was the issue. pillow 7.1.1 have been released a few hours ago, once it is available on pypi, I will remove this.

DEPS="${DEPS} pillow==7.0";
fi
- source ./ci/travis_install_with_$ENV.sh
- pip install .

Expand Down