File tree 5 files changed +11
-4
lines changed 5 files changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -58,6 +58,7 @@ The dependency requirements are based on the last scikit-learn release:
58
58
* scipy(>=0.17)
59
59
* numpy(>=1.11)
60
60
* scikit-learn(>=0.21)
61
+ * joblib(>=0.11)
61
62
* keras 2 (optional)
62
63
* tensorflow (optional)
63
64
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ install:
31
31
- conda create -n testenv --yes python=%PYTHON_VERSION% pip
32
32
- activate testenv
33
33
- conda install scipy numpy -y -q
34
- - conda install scikit-learn -y -q
34
+ - conda install scikit-learn joblib -y -q
35
35
- conda install %OPTIONAL_DEP% -y -q
36
36
- conda install pytest pytest-cov -y -q
37
37
- pip install codecov
Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ conda create -n $CONDA_ENV_NAME --yes --quiet python=3.6
92
92
source activate $CONDA_ENV_NAME
93
93
94
94
conda install --yes pip numpy scipy pillow matplotlib sphinx \
95
- sphinx_rtd_theme numpydoc pandas keras
95
+ sphinx_rtd_theme numpydoc pandas keras joblib
96
96
pip install --pre scikit-learn
97
97
pip install -U git+https://github.com/sphinx-gallery/sphinx-gallery.git
98
98
Original file line number Diff line number Diff line change @@ -39,6 +39,7 @@ if [[ "$DISTRIB" == "conda" ]]; then
39
39
conda create -n testenv --yes python=$PYTHON_VERSION pip
40
40
source activate testenv
41
41
conda install --yes numpy=$NUMPY_VERSION scipy=$SCIPY_VERSION
42
+ conda install --yes joblib
42
43
43
44
if [[ $PYTHON_VERSION == " 3.6" ]]; then
44
45
# Tensorflow is not available in Python 3.7 yet.
@@ -67,7 +68,7 @@ elif [[ "$DISTRIB" == "ubuntu" ]]; then
67
68
virtualenv --system-site-packages --python=python3 testvenv
68
69
source testvenv/bin/activate
69
70
70
- pip3 install scikit-learn
71
+ pip3 install scikit-learn joblib
71
72
pip3 install pandas keras tensorflow
72
73
pip3 install pytest pytest-cov codecov sphinx numpydoc
73
74
Original file line number Diff line number Diff line change 34
34
'Operating System :: MacOS' ,
35
35
'Programming Language :: Python :: 3.6' ,
36
36
'Programming Language :: Python :: 3.7' ]
37
- INSTALL_REQUIRES = ['numpy>=1.11' , 'scipy>=0.17' , 'scikit-learn>=0.21' ]
37
+ INSTALL_REQUIRES = [
38
+ 'numpy>=1.11' ,
39
+ 'scipy>=0.17' ,
40
+ 'scikit-learn>=0.21' ,
41
+ 'joblib>=0.11'
42
+ ]
38
43
EXTRAS_REQUIRE = {
39
44
'tests' : [
40
45
'pytest' ,
You can’t perform that action at this time.
0 commit comments