Skip to content

Commit c4e8b75

Browse files
committed
MAINT upgrade CIs
1 parent 17dcdd5 commit c4e8b75

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
.. |PythonMinVersion| replace:: 3.8
3131
.. |NumPyMinVersion| replace:: 1.17.3
3232
.. |SciPyMinVersion| replace:: 1.3.2
33-
.. |ScikitLearnMinVersion| replace:: 1.1.0
33+
.. |ScikitLearnMinVersion| replace:: 1.1.3
3434
.. |MatplotlibMinVersion| replace:: 3.1.2
3535
.. |PandasMinVersion| replace:: 1.0.5
3636
.. |TensorflowMinVersion| replace:: 2.4.3

azure-pipelines.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ jobs:
112112
ne(variables['Build.Reason'], 'Schedule')
113113
)
114114
matrix:
115-
py37_conda_forge_openblas_ubuntu_1804:
115+
py38_conda_forge_openblas_ubuntu_1804:
116116
DISTRIB: 'conda'
117117
CONDA_CHANNEL: 'conda-forge'
118118
PYTHON_VERSION: '3.8'
@@ -141,7 +141,7 @@ jobs:
141141
THREADPOOLCTL_VERSION: 'min'
142142
COVERAGE: 'false'
143143
# Linux + Python 3.8 build with OpenBLAS and without SITE_JOBLIB
144-
py37_conda_defaults_openblas:
144+
py38_conda_defaults_openblas:
145145
DISTRIB: 'conda'
146146
CONDA_CHANNEL: 'conda-forge'
147147
PYTHON_VERSION: '3.8'

build_tools/azure/install.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,8 @@ elif [[ "$DISTRIB" == "conda-pip-latest" ]]; then
6767
make_conda "python=$PYTHON_VERSION"
6868
python -m pip install -U pip
6969

70-
python -m pip --pre install scikit-learn pandas matplotlib
70+
python -m pip install pandas matplotlib
71+
python -m pip install --pre scikit-learn
7172

7273
elif [[ "$DISTRIB" == "conda-pip-latest-tensorflow" ]]; then
7374
make_conda "python=$PYTHON_VERSION"

imblearn/_min_dependencies.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
NUMPY_MIN_VERSION = "1.17.3"
55
SCIPY_MIN_VERSION = "1.3.2"
66
PANDAS_MIN_VERSION = "1.0.5"
7-
SKLEARN_MIN_VERSION = "1.1.0"
7+
SKLEARN_MIN_VERSION = "1.1.3"
88
TENSORFLOW_MIN_VERSION = "2.4.3"
99
KERAS_MIN_VERSION = "2.4.3"
10-
JOBLIB_MIN_VERSION = "1.0.0"
10+
JOBLIB_MIN_VERSION = "1.1.1"
1111
THREADPOOLCTL_MIN_VERSION = "2.0.0"
1212
PYTEST_MIN_VERSION = "5.0.1"
1313

0 commit comments

Comments
 (0)