8000 Added pillow to Travis runners 1, 2 for pilutils · scikit-learn/scikit-learn@4e93951 · GitHub
[go: up one dir, main page]

Skip to content

Commit 4e93951

Browse files
author
Jonathan Tammo Siebert
committed
Added pillow to Travis runners 1, 2 for pilutils
1 parent 05a98cc commit 4e93951

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ matrix:
2424
# versions of numpy, scipy with ATLAS that comes with Ubuntu Trusty 14.04
2525
# i.e. numpy 1.8.2 and scipy 0.13.3
2626
- env: DISTRIB="ubuntu" PYTHON_VERSION="2.7" CYTHON_VERSION="0.23.5"
27-
COVERAGE=true
27+
COVERAGE=true PILLOW=true
2828
if: type != cron
2929
addons:
3030
apt:
@@ -36,7 +36,7 @@ matrix:
3636
# Python 3.4 build
3737
- env: DISTRIB="conda" PYTHON_VERSION="3.4" INSTALL_MKL="false"
3838
NUMPY_VERSION="1.10.4" SCIPY_VERSION="0.16.1" CYTHON_VERSION="0.25.2"
39-
COVERAGE=true
39+
COVERAGE=true PILLOW=true
4040
if: type != cron
4141
# This environment tests the newest supported Anaconda release (5.0.0)
4242
# It also runs tests requiring Pandas and PyAMG

build_tools/travis/install.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,10 @@ if [[ "$DISTRIB" == "conda" ]]; then
5555
TO_INSTALL="$TO_INSTALL pyamg=$PYAMG_VERSION"
5656
fi
5757

58+
if [[ "$PILLOW" == "true" ]]; then
59+
pip install pillow
60+
fi
61+
5862
conda create -n testenv --yes $TO_INSTALL
5963
source activate testenv
6064

0 commit comments

Comments
 (0)
0