We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c228100 commit 270b6a3Copy full SHA for 270b6a3
dev/run-pip-tests
@@ -83,6 +83,7 @@ for python in "${PYTHON_EXECS[@]}"; do
83
if [ -n "$USE_CONDA" ]; then
84
conda create -y -p "$VIRTUALENV_PATH" python=$python numpy pandas pip setuptools
85
source activate "$VIRTUALENV_PATH"
86
+ conda config --set ssl_verify false
87
conda install -y -c conda-forge pyarrow=0.4.0
88
TEST_PYARROW=1
89
else
@@ -91,7 +92,7 @@ for python in "${PYTHON_EXECS[@]}"; do
91
92
source "$VIRTUALENV_PATH"/bin/activate
93
fi
94
# Upgrade pip & friends if using virutal env
- if [ ! -n "USE_CONDA" ]; then
95
+ if [ ! -n "$USE_CONDA" ]; then
96
pip install --upgrade pip pypandoc wheel numpy
97
98
0 commit comments