From 5ed7d0d236a56e35acd34b17935fb60385b3a318 Mon Sep 17 00:00:00 2001 From: Tom Augspurger Date: Wed, 27 Sep 2017 15:59:26 -0500 Subject: [PATCH 1/2] try installing bzip2 --- ci/install_travis.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ci/install_travis.sh b/ci/install_travis.sh index b85263daa1eac..8460d2124348e 100755 --- a/ci/install_travis.sh +++ b/ci/install_travis.sh @@ -148,6 +148,9 @@ if [ -e ${REQ} ]; then time bash $REQ || exit 1 fi +# test commit +conda install bzip2 + # remove any installed pandas package # w/o removing anything else echo From 75d6aa3696c4f0ce7cca2bd39cb7c6c074d589be Mon Sep 17 00:00:00 2001 From: Tom Augspurger Date: Wed, 27 Sep 2017 17:03:38 -0500 Subject: [PATCH 2/2] compiler --- ci/install_circle.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ci/install_circle.sh b/ci/install_circle.sh index fd79f907625e9..d7b3a6d07c60d 100755 --- a/ci/install_circle.sh +++ b/ci/install_circle.sh @@ -69,6 +69,9 @@ time conda install -n pandas pytest>=3.1.0 || exit 1 source activate pandas time pip install moto || exit 1 +# https://github.com/conda/conda/issues/6030 +conda install gcc_linux-64 + # build but don't install echo "[build em]" time python setup.py build_ext --inplace || exit 1