Skip to content

Commit a176841

Browse files
committed
Add travis_wait before installing Python dependencies.
1 parent 1ee77f4 commit a176841

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ python:
66
install:
77
- sudo apt-get -qq install libatlas-base-dev gfortran
88
- if [[ $TRAVIS_PYTHON_VERSION == 2* ]]; then pip install -r requirements-2.txt; fi
9-
- if [[ $TRAVIS_PYTHON_VERSION == 3* ]]; then pip install -r requirements-3.txt; fi
9+
- if [[ $TRAVIS_PYTHON_VERSION == 3* ]]; then travis_wait pip install -r requirements-3.txt; fi
1010
- pip install pep8
1111

1212
# Ensure `requirements.txt` contains all of the dependencies

0 commit comments

Comments
 (0)