Skip to content

Commit 270b6a3

Browse files
committed
Disable SSL verification to install pyarrow with conda
1 parent c228100 commit 270b6a3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

dev/run-pip-tests

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ for python in "${PYTHON_EXECS[@]}"; do
8383
if [ -n "$USE_CONDA" ]; then
8484
conda create -y -p "$VIRTUALENV_PATH" python=$python numpy pandas pip setuptools
8585
source activate "$VIRTUALENV_PATH"
86+
conda config --set ssl_verify false
8687
conda install -y -c conda-forge pyarrow=0.4.0
8788
TEST_PYARROW=1
8889
else
@@ -91,7 +92,7 @@ for python in "${PYTHON_EXECS[@]}"; do
9192
source "$VIRTUALENV_PATH"/bin/activate
9293
fi
9394
# Upgrade pip & friends if using virutal env
94-
if [ ! -n "USE_CONDA" ]; then
95+
if [ ! -n "$USE_CONDA" ]; then
9596
pip install --upgrade pip pypandoc wheel numpy
9697
fi
9798

0 commit comments

Comments
 (0)