File tree 2 files changed +10
-2
lines changed
2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 38
38
NUMPY_VERSION="1.13.1" SCIPY_VERSION="0.19.1" SKLEARN_VERSION="0.18.2"
39
39
- DISTRIB="conda" PYTHON_VERSION="3.6"
40
40
NUMPY_VERSION="1.13.1" SCIPY_VERSION="0.19.1" SKLEARN_VERSION="0.18.2"
41
+ - DISTRIB="conda" PYTHON_VERSION="3.6"
42
+ NUMPY_VERSION="1.13.1" SCIPY_VERSION="0.19.1" SKLEARN_VERSION="master"
41
43
42
44
install : source build_tools/travis/install.sh
43
45
script : bash build_tools/travis/test_script.sh
Original file line number Diff line number Diff line change @@ -38,8 +38,14 @@ if [[ "$DISTRIB" == "conda" ]]; then
38
38
# provided versions
39
39
conda create -n testenv --yes python=$PYTHON_VERSION pip
40
40
source activate testenv
41
- conda install --yes numpy=$NUMPY_VERSION scipy=$SCIPY_VERSION \
42
- scikit-learn=$SKLEARN_VERSION
41
+ conda install --yes numpy=$NUMPY_VERSION scipy=$SCIPY_VERSION
42
+
43
+ if [[ " $SKLEARN_VERSION " == " master" ]]; then
44
+ pip install -U git+https://github.com/scikit-learn/scikit-learn.git
45
+ else
46
+ conda install --yes scikit-learn=$SKLEARN_VERSION
47
+ fi
48
+
43
49
conda install --yes nose pytest pytest-cov
44
50
# Install nose-timer via pip
45
51
pip install nose-timer codecov
You can’t perform that action at this time.
0 commit comments