Skip to content

Commit 9044fe7

Browse files
committed
Merge pull request #4141 from cpcloud/travis-install-pip-serially
BLD: install pip serially
2 parents 6a0b9ec + b179099 commit 9044fe7

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

ci/install.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,9 @@ if [ x"$FULL_DEPS" == x"true" ] ; then
5353
fi
5454

5555
# Hard Deps
56-
time pip install $PIP_ARGS nose python-dateutil pytz>=2013a
57-
time pip install $PIP_ARGS cython==0.19.1
56+
for dep in nose 'python-dateutil' 'pytz>=2013a' 'cython==0.19.1'; do
57+
time pip install $PIP_ARGS $dep
58+
done
5859

5960
if [ ${TRAVIS_PYTHON_VERSION} == "3.3" ]; then # should be >=3,3
6061
time pip install $PIP_ARGS numpy==1.7.1

0 commit comments

Comments
 (0)