Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions scripts/create_testenv.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@ set -e # fail on first error

PYTHON_VERSION=${PYTHON_VERSION:-3.5} # if no python specified, use 3.5

conda create -n testenv --yes pip python=${PYTHON_VERSION}

source activate testenv
if [[ "$*" != *--global* ]]
then
conda create -n testenv --yes pip python=${PYTHON_VERSION}
source activate testenv
fi

conda install --yes pyqt=4.11.4 jupyter pyzmq numpy scipy nose matplotlib pandas Cython patsy statsmodels joblib coverage
if [ ${PYTHON_VERSION} == "2.7" ]; then
Expand Down