Skip to content

Commit a140586

Browse files
committed
CI install more packages via pip to make better use of the cache
1 parent 259bd6b commit a140586

1 file changed

Lines changed: 3 additions & 5 deletions

File tree

ci_scripts/install.sh

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,11 @@ popd
2525
# Configure the conda environment and put it in the path using the
2626
# provided versions
2727
conda create -n testenv --yes python=$PYTHON_VERSION pip nose \
28-
numpy=$NUMPY_VERSION scipy=$SCIPY_VERSION cython=$CYTHON_VERSION matplotlib \
29-
scikit-learn=$SKLEARN_VERSION nbconvert nbformat jupyter_client ipython \
30-
jupyter notebook ipykernel pandas
28+
numpy=$NUMPY_VERSION scipy=$SCIPY_VERSION cython=$CYTHON_VERSION \
29+
scikit-learn=$SKLEARN_VERSION pandas
3130
source activate testenv
32-
ipython kernel install
33-
3431

32+
pip install matplotlib jupyter notebook nbconvert nbformat jupyter_client ipython ipykernel
3533
if [[ "$COVERAGE" == "true" ]]; then
3634
pip install coverage coveralls
3735
fi

0 commit comments

Comments
 (0)