From f221b492e79451b97ff1c10fd866f0b2a4168202 Mon Sep 17 00:00:00 2001 From: Alex Willmer Date: Sat, 1 Aug 2015 21:42:44 +0100 Subject: [PATCH] Travis: Speedup pip by using favouring wheels - Upgrade pip to a version that installs from wheels - Ask Travis to preserve pip's download cache between builds --- .travis.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.travis.yml b/.travis.yml index d78cba1..926c2d1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,10 @@ language: python sudo: false +cache: + directories: + - $HOME/.cache/pip + addons: apt: packages: @@ -16,6 +20,7 @@ matrix: - python: "3.4" env: TOXENV=py34 install: + - pip install "pip>=7.1.0" - pip install tox script: tox