Skip to content

Commit 99fd0d4

Browse files
author
Guillaume Lemaitre
committed
Fix the test
1 parent 4269197 commit 99fd0d4

File tree

1 file changed

+5
-12
lines changed

1 file changed

+5
-12
lines changed

build_tools/travis/install.sh

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -24,24 +24,17 @@ popd
2424

2525
# Configure the conda environment and put it in the path using the
2626
# provided versions
27-
conda create -n testenv --yes python=$PYTHON_VERSION pip nose mkl
28-
# numpy=$NUMPY_VERSION scipy=$SCIPY_VERSION scikit-learn=$SKLEARN_VERSION \
29-
# libgfortran nomkl
27+
conda create -n testenv --yes python=$PYTHON_VERSION pip nose
28+
numpy=$NUMPY_VERSION scipy=$SCIPY_VERSION \
29+
libgfortran nomkl
3030
source activate testenv
3131

32-
conda install --yes openblas blas numpy=$NUMPY_VERSION scipy=$SCIPY_VERSION \
33-
scikit-learn -c conda-forge
34-
32+
# Install scikit-learn
33+
conda install --yes scikit-learn=$SKLEARN_VERSION
3534

3635
# Install nose-timer via pip
3736
pip install nose-timer
3837

39-
# # Install libgfortran with conda
40-
# conda install --yes libgfortran \
41-
# numpy=1.10.4 scipy=0.17.1 \
42-
# scikit-learn=0.17.1 \
43-
# six=1.10.0
44-
4538
if [[ "$COVERAGE" == "true" ]]; then
4639
pip install coverage coveralls
4740
fi

0 commit comments

Comments
 (0)