From 741ff7f2ccd8ff5bb64356f01a98d5156ba16154 Mon Sep 17 00:00:00 2001 From: Jeff Reback Date: Mon, 18 Dec 2017 07:11:48 -0500 Subject: [PATCH] BLD: fix build_test --- ci/install_travis.sh | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/ci/install_travis.sh b/ci/install_travis.sh index dac3625cba4ba..b9d1c9354eeb4 100755 --- a/ci/install_travis.sh +++ b/ci/install_travis.sh @@ -155,12 +155,11 @@ echo "[removing installed pandas]" conda remove pandas -y --force pip uninstall -y pandas -if [ "$BUILD_TEST" ]; then +# remove any installation +conda list pandas +pip list --format columns | grep pandas - # remove any installation - pip uninstall -y pandas - conda list pandas - pip list --format columns |grep pandas +if [ "$BUILD_TEST" ]; then # build & install testing echo ["building release"]