From 09c0258f30429970993b5cbc6de603bb0fabcce7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Barrois?= Date: Wed, 25 Dec 2013 01:45:07 +0100 Subject: Don't install Pillow on PyPy on travis. --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 3edfd11..e3617e4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,7 +12,8 @@ script: install: - if [[ $TRAVIS_PYTHON_VERSION = 2.6 ]]; then pip install unittest2 --use-mirrors; fi - - pip install Django Pillow sqlalchemy --use-mirrors + - pip install Django sqlalchemy --use-mirrors + - if ! python --version 2>&1 | grep -q -i pypy ; then pip install Pillow --use-mirrors notifications: email: false -- cgit v1.2.3