Remove deprecated pip flag

As of pip 7.x the `--use-mirrors` flag has been removed and is now
failing builds.
This commit is contained in:
Mike Fiedler 2016-08-10 08:14:20 -04:00
parent 1078fb54be
commit 18bd10a143
No known key found for this signature in database
GPG Key ID: 5E1134F2FAF158B9

View File

@ -4,7 +4,7 @@ python:
before_install:
- sudo apt-get update && sudo apt-get install -qq graphviz
# command to install dependencies
install: "pip install -q -r requirements.txt --use-mirrors"
install: "pip install -q -r requirements.txt"
# command to run tests
script: sphinx-build -nW -b html -d _build/doctrees . _build/html
# Flags used here, not in `make html`: