Fix builds failing on travis-ci
By forcing installation of pip>=8.0.2
This commit is contained in:
parent
07bc2c143c
commit
4e012fd976
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue