File tree 2 files changed +7
-3
lines changed
2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ matrix:
24
24
# versions of numpy, scipy with ATLAS that comes with Ubuntu Trusty 14.04
25
25
# i.e. numpy 1.8.2 and scipy 0.13.3
26
26
- env : DISTRIB="ubuntu" PYTHON_VERSION="2.7" CYTHON_VERSION="0.23.5"
27
- COVERAGE=true
27
+ COVERAGE=true PILLOW=true
28
28
if : type != cron
29
29
addons :
30
30
apt :
@@ -36,13 +36,13 @@ matrix:
36
36
# Python 3.4 build
37
37
- env : DISTRIB="conda" PYTHON_VERSION="3.4" INSTALL_MKL="false"
38
38
NUMPY_VERSION="1.10.4" SCIPY_VERSION="0.16.1" CYTHON_VERSION="0.25.2"
39
- COVERAGE=true
39
+ COVERAGE=true PILLOW=true
40
40
if : type != cron
41
41
# This environment tests the newest supported Anaconda release (5.0.0)
42
42
# It also runs tests requiring Pandas.
43
43
- env : DISTRIB="conda" PYTHON_VERSION="3.6.2" INSTALL_MKL="true"
44
44
NUMPY_VERSION="1.13.1" SCIPY_VERSION="0.19.1" PANDAS_VERSION="0.20.3"
45
- CYTHON_VERSION="0.26.1" COVERAGE=true
45
+ CYTHON_VERSION="0.26.1" COVERAGE=true PILLOW=false
46
46
CHECK_PYTEST_SOFT_DEPENDENCY="true"
47
47
if : type != cron
48
48
# flake8 linting on diff wrt common ancestor with upstream/master
Original file line number Diff line number Diff line change @@ -82,6 +82,10 @@ if [[ "$COVERAGE" == "true" ]]; then
82
82
pip install coverage codecov
83
83
fi
84
84
85
+ if [[ " $PILLOW " == " true" ]]; then
86
+ pip install pillow
87
+ fi
88
+
85
89
if [[ " $TEST_DOCSTRINGS " == " true" ]]; then
86
90
pip install sphinx numpydoc # numpydoc requires sphinx
87
91
fi
You can’t perform that action at this time.
0 commit comments