File tree Expand file tree Collapse file tree 5 files changed +8
-8
lines changed Expand file tree Collapse file tree 5 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -33,11 +33,11 @@ matrix:
33
33
- env : DISTRIB="ubuntu"
34
34
# Latest release
35
35
- env : DISTRIB="conda" PYTHON_VERSION="2.7"
36
- NUMPY_VERSION="1.13.1" SCIPY_VERSION="0.19.1" SKLEARN_VERSION="0.20rc "
36
+ NUMPY_VERSION="1.13.1" SCIPY_VERSION="0.19.1" SKLEARN_VERSION="0.20 "
37
37
- env : DISTRIB="conda" PYTHON_VERSION="3.6"
38
- NUMPY_VERSION="*" SCIPY_VERSION="*" SKLEARN_VERSION="0.20rc "
38
+ NUMPY_VERSION="*" SCIPY_VERSION="*" SKLEARN_VERSION="0.20 "
39
39
- env : DISTRIB="conda" PYTHON_VERSION="3.7"
40
- NUMPY_VERSION="1.13.1" SCIPY_VERSION="0.19.1" SKLEARN_VERSION="0.20rc "
40
+ NUMPY_VERSION="1.13.1" SCIPY_VERSION="0.19.1" SKLEARN_VERSION="0.20 "
41
41
- env : DISTRIB="conda" PYTHON_VERSION="3.7"
42
42
NUMPY_VERSION="*" SCIPY_VERSION="*" SKLEARN_VERSION="master"
43
43
allow_failures :
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ install:
41
41
- conda create -n testenv --yes python=%PYTHON_VERSION% pip
42
42
- activate testenv
43
43
- conda install scipy numpy -y -q
44
- - pip install --pre scikit-learn
44
+ - conda install scikit-learn -y -q
45
45
- conda install %OPTIONAL_DEP% -y -q
46
46
- conda install pytest pytest-cov -y -q
47
47
- pip install codecov
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ if [[ "$DISTRIB" == "conda" ]]; then
52
52
conda install --yes cython
53
53
pip install -U git+https://github.com/scikit-learn/scikit-learn.git
54
54
else
55
- conda install --yes scikit-learn=$SKLEARN_VERSION -c conda-forge/label/rc -c conda-forge
55
+ conda install --yes scikit-learn=$SKLEARN_VERSION
56
56
fi
57
57
58
58
conda install --yes pytest pytest-cov
@@ -67,7 +67,7 @@ elif [[ "$DISTRIB" == "ubuntu" ]]; then
67
67
virtualenv --system-site-packages testvenv
68
68
source testvenv/bin/activate
69
69
70
- pip install --pre scikit-learn
70
+ pip install scikit-learn
71
71
pip install pandas keras tensorflow
72
72
pip install pytest pytest-cov codecov sphinx numpydoc
73
73
Original file line number Diff line number Diff line change 1
1
numpy >= 1.8.2
2
2
scipy >= 0.13.3
3
- scikit-learn >= 0.20rc1
3
+ scikit-learn >= 0.20
Original file line number Diff line number Diff line change 35
35
'Programming Language :: Python :: 2.7' ,
36
36
'Programming Language :: Python :: 3.6' ,
37
37
'Programming Language :: Python :: 3.7' ]
38
- INSTALL_REQUIRES = ['numpy>=1.8.2' , 'scipy>=0.13.3' , 'scikit-learn>=0.20rc1 ' ]
38
+ INSTALL_REQUIRES = ['numpy>=1.8.2' , 'scipy>=0.13.3' , 'scikit-learn>=0.20 ' ]
39
39
EXTRAS_REQUIRE = {
40
40
'tests' : [
41
41
'pytest' ,
You can’t perform that action at this time.
0 commit comments