File tree Expand file tree Collapse file tree 1 file changed +5
-12
lines changed Expand file tree Collapse file tree 1 file changed +5
-12
lines changed Original file line number Diff line number Diff line change 24
24
25
25
# Configure the conda environment and put it in the path using the
26
26
# 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
30
30
source activate testenv
31
31
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
35
34
36
35
# Install nose-timer via pip
37
36
pip install nose-timer
38
37
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
-
45
38
if [[ " $COVERAGE " == " true" ]]; then
46
39
pip install coverage coveralls
47
40
fi
You can’t perform that action at this time.
0 commit comments