File tree Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 29
29
matrix :
30
30
# This environment tests the using anaconda
31
31
- DISTRIB="conda" PYTHON_VERSION="2.7" COVERAGE="true"
32
- NUMPY_VERSION="1.9.3 " SCIPY_VERSION="0.16.0 "
32
+ NUMPY_VERSION="1.10.4 " SCIPY_VERSION="0.17.1" SKLEARN_VERSION="0.18.1 "
33
33
- DISTRIB="conda" PYTHON_VERSION="3.5" COVERAGE="true"
34
- NUMPY_VERSION="1.10.4" SCIPY_VERSION="0.17.0 "
34
+ NUMPY_VERSION="1.10.4" SCIPY_VERSION="0.17.1" SKLEARN_VERSION="0.18.1 "
35
35
# flake8 linting on diff wrt common ancestor with upstream/master
36
36
- RUN_FLAKE8="true" SKIP_TESTS="true"
37
37
DISTRIB="conda" PYTHON_VERSION="3.5"
38
- NUMPY_VERSION="1.10.4" SCIPY_VERSION="0.17.0"
38
+ NUMPY_VERSION="1.10.4" SCIPY_VERSION="0.17.0" SKLEARN_VERSION="0.18.1"
39
39
40
40
install : source build_tools/travis/install.sh
41
41
script : bash build_tools/travis/test_script.sh
Original file line number Diff line number Diff line change 25
25
# Configure the conda environment and put it in the path using the
26
26
# provided versions
27
27
conda create -n testenv --yes python=$PYTHON_VERSION pip nose \
28
- numpy=$NUMPY_VERSION scipy=$SCIPY_VERSION \
28
+ numpy=$NUMPY_VERSION scipy=$SCIPY_VERSION scikit-learn= $SKLEARN_VERSION \
29
29
libgfortran nomkl flake8
30
- # source activate testenv
30
+ source activate testenv
31
31
32
32
# Install nose-timer via pip
33
33
pip install nose-timer
34
34
35
- # Install libgfortran with conda
36
- conda install --yes libgfortran \
37
- numpy=1.10.4 scipy=0.17.1 \
38
- scikit-learn=0.17.1 \
39
- six=1.10.0
35
+ # # Install libgfortran with conda
36
+ # conda install --yes libgfortran \
37
+ # numpy=1.10.4 scipy=0.17.1 \
38
+ # scikit-learn=0.17.1 \
39
+ # six=1.10.0
40
40
41
41
if [[ " $COVERAGE " == " true" ]]; then
42
42
pip install coverage coveralls
You can’t perform that action at this time.
0 commit comments