Fix builds failing on travis-ci

By forcing installation of pip>=8.0.2
This commit is contained in:
Vineet Naik 2016-02-14 19:16:38 +05:30
parent 07bc2c143c
commit 4e012fd976
1 changed files with 3 additions and 1 deletions

View File

@ -9,7 +9,9 @@ python:
- "3.3"
- "3.4"
before_install: make test-env
install: pip install .
install:
- pip install pip>=8.0.2
- pip install .
script: py.test -v
after_script: make clean clean-env
sudo: false