From d429554c5b2de99c87e4606ae905fed995aa6026 Mon Sep 17 00:00:00 2001 From: ilvalle Date: Sat, 25 Jun 2016 13:40:12 +0200 Subject: [PATCH] fix travis, pip 8.1.2 no longer supports --download-cache option --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index be3d0356..9f276d6f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -29,8 +29,8 @@ install: - if [[ $TRAVIS_PYTHON_VERSION != '3.5' ]]; then pip install -e .; fi; before_script: - - pip install --download-cache $HOME/.pip-cache coverage - - pip install --download-cache $HOME/.pip-cache codecov + - pip install coverage + - pip install codecov - mysql -e 'create database pydal;' - psql -c 'create database pydal;' -U postgres - psql -c 'create extension postgis;' -U postgres -d pydal;