File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ matrix:
23
23
# This environment tests that scikit-learn can be built against
24
24
# versions of numpy, scipy with ATLAS that comes with Ubuntu Xenial 16.04
25
25
# i.e. numpy 1.11 and scipy 0.17
26
- - env : DISTRIB="ubuntu" PYTHON_VERSION="3.5" CYTHON_VERSION="0.28.6"
26
+ - env : DISTRIB="ubuntu" PYTHON_VERSION="3.5"
27
27
NUMPY_VERSION="1.11.0" SCIPY_VERSION="0.17.0"
28
28
PILLOW_VERSION="4.0.0" COVERAGE=true
29
29
SKLEARN_SITE_JOBLIB=1 JOBLIB_VERSION="0.11"
@@ -38,12 +38,12 @@ matrix:
38
38
- libatlas-dev
39
39
# Python 3.5 build without SITE_JOBLIB
40
40
- env : DISTRIB="conda" PYTHON_VERSION="3.5" INSTALL_MKL="false"
41
- NUMPY_VERSION="1.11.0" SCIPY_VERSION="0.17.0" CYTHON_VERSION="0.25.2 "
41
+ NUMPY_VERSION="1.11.0" SCIPY_VERSION="0.17.0" CYTHON_VERSION="* "
42
42
PILLOW_VERSION="4.0.0" COVERAGE=true
43
43
if : type != cron
44
44
# Python 3.5 build
45
45
- env : DISTRIB="conda" PYTHON_VERSION="3.5" INSTALL_MKL="false"
46
- NUMPY_VERSION="1.11.0" SCIPY_VERSION="0.17.0" CYTHON_VERSION="0.25.2 "
46
+ NUMPY_VERSION="1.11.0" SCIPY_VERSION="0.17.0" CYTHON_VERSION="* "
47
47
PILLOW_VERSION="4.0.0" COVERAGE=true
48
48
SKLEARN_SITE_JOBLIB=1 JOBLIB_VERSION="0.11"
49
49
if : type != cron
Original file line number Diff line number Diff line change 1
1
numpy
2
2
scipy
3
- # Pin Cython to avoid bug with 0.28.x on Python 3.7
4
- cython == 0.27.3
3
+ cython
5
4
pytest
6
5
wheel
7
6
wheelhouse_uploader
Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ elif [[ "$DISTRIB" == "ubuntu" ]]; then
79
79
# and scipy
80
80
virtualenv --system-site-packages --python=python3 testvenv
81
81
source testvenv/bin/activate
82
- pip install pytest pytest-cov cython== $CYTHON_VERSION joblib==$JOBLIB_VERSION
82
+ pip install pytest pytest-cov cython joblib==$JOBLIB_VERSION
83
83
84
84
elif [[ " $DISTRIB " == " scipy-dev" ]]; then
85
85
make_conda python=3.7
Original file line number Diff line number Diff line change 13
13
from numpy .distutils .system_info import get_info
14
14
15
15
DEFAULT_ROOT = 'sklearn'
16
- CYTHON_MIN_VERSION = '0.23'
16
+ # on conda, this is the latest for python 3.5
17
+ CYTHON_MIN_VERSION = '0.28.5'
17
18
18
19
19
20
def get_blas_info ():
You can’t perform that action at this time.
0 commit comments