From 270b6a33906bae83848540b178f64fef5c636f56 Mon Sep 17 00:00:00 2001 From: hyukjinkwon Date: Wed, 28 Jun 2017 01:15:03 +0900 Subject: [PATCH] Disable SSL verification to install pyarrow with conda --- dev/run-pip-tests | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dev/run-pip-tests b/dev/run-pip-tests index 225e9209536f0..06ca56bc35674 100755 --- a/dev/run-pip-tests +++ b/dev/run-pip-tests @@ -83,6 +83,7 @@ for python in "${PYTHON_EXECS[@]}"; do if [ -n "$USE_CONDA" ]; then conda create -y -p "$VIRTUALENV_PATH" python=$python numpy pandas pip setuptools source activate "$VIRTUALENV_PATH" + conda config --set ssl_verify false conda install -y -c conda-forge pyarrow=0.4.0 TEST_PYARROW=1 else @@ -91,7 +92,7 @@ for python in "${PYTHON_EXECS[@]}"; do source "$VIRTUALENV_PATH"/bin/activate fi # Upgrade pip & friends if using virutal env - if [ ! -n "USE_CONDA" ]; then + if [ ! -n "$USE_CONDA" ]; then pip install --upgrade pip pypandoc wheel numpy fi