From cbfe2b5c5af4656716a3337e2f6a7f911703052c Mon Sep 17 00:00:00 2001 From: Adam Dobrawy Date: Fri, 14 Aug 2015 16:53:28 +0200 Subject: [PATCH] "--use-mirrors" remove and pip upgrade It is good to use newest version of pip. For example pip 7 install add to support to cache compiled-package and improved cache. ```--use-mirrors``` is deprecated. PyPI use CDN now, so it doesn't make sense. --- .travis.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index bc3b43a..aaaff51 100644 --- a/.travis.yml +++ b/.travis.yml @@ -27,7 +27,8 @@ matrix: - env: DJANGO=1.8.2 python: '2.6' install: -- pip install -q Django==$DJANGO --use-mirrors -- pip install -q -e . --use-mirrors +- pip install pip wheel -u +- pip install -q Django==$DJANGO +- pip install -q -e . script: - python setup.py test