Skip to content

Commit 4451d5e

Browse files
committed
Remove deprecated --use-mirrors from travis.yml
The pip option `--use-mirrors` options is removed from pip since version 7.0.0 (2015-05-21), this results in a build failure on Travis. Because PyPI is using a CDN now, an alternative to the `--use-mirrors` is not needed so the option can be removed.
1 parent 0136712 commit 4451d5e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.travis.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ before_install:
2020
- "sudo apt-get update -qq"
2121
- "sudo apt-get install nmap -qq"
2222
install:
23-
- "pip install pep8 --use-mirrors"
24-
- "pip install pyflakes --use-mirrors"
25-
# - "pip install boto --use-mirrors" # disabled: since boto not supporting py3
26-
# - "pip install pymongo sqlalchemy MySQL-python --use-mirrors" # disabled MySQL-python (not py3 compatible)
27-
- "pip install pymongo sqlalchemy pymysql --use-mirrors"
23+
- "pip install pep8"
24+
- "pip install pyflakes"
25+
# - "pip install boto" # disabled: since boto not supporting py3
26+
# - "pip install pymongo sqlalchemy MySQL-python" # disabled MySQL-python (not py3 compatible)
27+
- "pip install pymongo sqlalchemy pymysql"
2828
- "pip install coveralls"
2929
- "python setup.py install"
3030
before_script:

0 commit comments

Comments
 (0)