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 and PyAMG
Original file line number Diff line number Diff line change @@ -55,6 +55,10 @@ if [[ "$DISTRIB" == "conda" ]]; then
55
55
TO_INSTALL=" $TO_INSTALL pyamg=$PYAMG_VERSION "
56
56
fi
57
57
58
+ if [[ " $PILLOW " == " true" ]]; then
59
+ pip install pillow
60
+ fi
61
+
58
62
conda create -n testenv --yes $TO_INSTALL
59
63
source activate testenv
60
64
You can’t perform that action at this time.
0 commit comments