File tree 2 files changed +6
-2
lines changed 2 files changed +6
-2
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,7 +36,7 @@ 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.
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