From 3cbef507e7865e6d04c72ed287d0183cee79e221 Mon Sep 17 00:00:00 2001 From: Berker Peksag Date: Sun, 10 Nov 2013 15:12:44 +0200 Subject: [PATCH] PyPI is now behind a CDN. The `--use-mirrors` option is deprecated. See PEP 449 and https://mail.python.org/pipermail/distutils-sig/2013-May/020848.html for more information. --- .travis.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 0ba4a9e..8c6d5c8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,10 +7,10 @@ python: - "2.6" # command to install dependencies install: - - pip install -r requirements.txt --use-mirrors - - if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install argparse importlib unittest2 astor --use-mirrors; fi - - if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then pip install astor --use-mirrors; fi - - if [[ $TRAVIS_PYTHON_VERSION == 'pypy' ]]; then pip install astor --use-mirrors; fi + - pip install -r requirements.txt + - if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install argparse importlib unittest2 astor; fi + - if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then pip install astor; fi + - if [[ $TRAVIS_PYTHON_VERSION == 'pypy' ]]; then pip install astor; fi - python setup.py -q install # # command to run tests script: make travis