From b1790995ed885d6c6f4be7befebd2e7208a158bd Mon Sep 17 00:00:00 2001 From: Phillip Cloud Date: Fri, 5 Jul 2013 16:24:26 -0400 Subject: [PATCH] BLD: install pip serially --- ci/install.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ci/install.sh b/ci/install.sh index 54de404854af8..4795ac8f4f59d 100755 --- a/ci/install.sh +++ b/ci/install.sh @@ -53,8 +53,9 @@ if [ x"$FULL_DEPS" == x"true" ] ; then fi # Hard Deps -time pip install $PIP_ARGS nose python-dateutil pytz>=2013a -time pip install $PIP_ARGS cython==0.19.1 +for dep in nose 'python-dateutil' 'pytz>=2013a' 'cython==0.19.1'; do + time pip install $PIP_ARGS $dep +done if [ ${TRAVIS_PYTHON_VERSION} == "3.3" ]; then # should be >=3,3 time pip install $PIP_ARGS numpy==1.7.1