@@ -40,7 +40,7 @@ if [[ "$DISTRIB" == "conda" ]]; then
4040 source activate testenv
4141 conda install --yes numpy=$NUMPY_VERSION scipy=$SCIPY_VERSION
4242
43- if [[ $PYTHON_VERSION == " 3.6 " ]]; then
43+ if [[ $PYTHON_VERSION == " 3.7 " ]]; then
4444 conda install --yes pandas
4545 conda install --yes -c conda-forge keras
4646 KERAS_BACKEND=tensorflow
@@ -52,12 +52,11 @@ if [[ "$DISTRIB" == "conda" ]]; then
5252 conda install --yes cython
5353 pip install -U git+https://github.com/scikit-learn/scikit-learn.git
5454 else
55- conda install --yes scikit-learn=$SKLEARN_VERSION
55+ conda install --yes scikit-learn=$SKLEARN_VERSION -c conda-forge/label/rc -c conda-forge
5656 fi
5757
58- conda install --yes nose pytest pytest-cov
59- # Install nose-timer via pip
60- pip install nose-timer codecov
58+ conda install --yes pytest pytest-cov
59+ pip install codecov
6160
6261elif [[ " $DISTRIB " == " ubuntu" ]]; then
6362 # At the time of writing numpy 1.9.1 is included in the travis
@@ -67,9 +66,10 @@ elif [[ "$DISTRIB" == "ubuntu" ]]; then
6766 # Create a new virtualenv using system site packages for python, numpy
6867 virtualenv --system-site-packages testvenv
6968 source testvenv/bin/activate
70- pip install scikit-learn
69+
70+ pip install --pre scikit-learn
7171 pip install pandas keras tensorflow
72- pip install nose nose-timer pytest pytest-cov codecov sphinx numpydoc
72+ pip install pytest pytest-cov codecov sphinx numpydoc
7373
7474fi
7575
0 commit comments