From 40a54b5a1f0386d235883f0346fecf6ef41ef41e Mon Sep 17 00:00:00 2001 From: Jeff Reback Date: Sat, 14 Mar 2015 10:47:55 -0400 Subject: [PATCH] CI: don't remove python-dateutil at end of install --- ci/install_conda.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/install_conda.sh b/ci/install_conda.sh index 2a54a038b474e..4c8a62c64979d 100755 --- a/ci/install_conda.sh +++ b/ci/install_conda.sh @@ -98,7 +98,7 @@ fi python setup.py build_ext --inplace && python setup.py develop -for package in beautifulsoup4 'python-dateutil'; do +for package in beautifulsoup4; do pip uninstall --yes $package done