1
0
Fork 0

"--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.
This commit is contained in:
Adam Dobrawy 2015-08-14 16:53:28 +02:00
parent d05b255cc2
commit cbfe2b5c5a

View file

@ -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