From 60fca887a53c958ef7dff44becf7af9e9ef571da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Est=C3=A8ve?= Date: Fri, 17 Jun 2016 12:17:28 +0200 Subject: [PATCH] Fix CircleCI failure The way the environment was activated was a la virtualenv. Maybe it used to work for some time but not anymore. [doc build] --- build_tools/circle/build_doc.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build_tools/circle/build_doc.sh b/build_tools/circle/build_doc.sh index 670d3ecff3eaa..7f41a6bc3e1e2 100755 --- a/build_tools/circle/build_doc.sh +++ b/build_tools/circle/build_doc.sh @@ -45,8 +45,8 @@ popd # Configure the conda environment and put it in the path using the # provided versions conda create -n testenv --yes --quiet python numpy scipy \ - cython nose coverage matplotlib sphinx pillow psutil -source /home/ubuntu/miniconda/envs/testenv/bin/activate testenv + cython nose coverage matplotlib sphinx pillow +source activate testenv # Build and install scikit-learn in dev mode python setup.py develop