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 37c32d1 commit a1fdad8Copy full SHA for a1fdad8
dev/run-pip-tests
@@ -76,15 +76,18 @@ for python in "${PYTHON_EXECS[@]}"; do
76
VIRTUALENV_PATH="$VIRTUALENV_BASE"/$python
77
rm -rf "$VIRTUALENV_PATH"
78
if [ -n "$USE_CONDA" ]; then
79
+ echo "+++++++++ using conda"
80
conda create -y -p "$VIRTUALENV_PATH" python=$python numpy pandas pip setuptools
81
source activate "$VIRTUALENV_PATH"
82
else
83
mkdir -p "$VIRTUALENV_PATH"
84
+ echo "+++++++++ using virtualenv"
85
virtualenv --python=$python "$VIRTUALENV_PATH"
86
source "$VIRTUALENV_PATH"/bin/activate
87
fi
88
# Upgrade pip & friends if using virtual env
89
if [ ! -n "$USE_CONDA" ]; then
90
+ echo "++++++++ using pip"
91
pip install --upgrade pip wheel numpy
92
93
0 commit comments