diff --git a/doc/install.rst b/doc/install.rst index 5e146d430..9dd3c83af 100644 --- a/doc/install.rst +++ b/doc/install.rst @@ -10,7 +10,7 @@ The imbalanced-learn package requires the following dependencies: * python (>=3.6) * numpy (>=1.13.3) * scipy (>=0.19.1) -* scikit-learn (>=0.22) +* scikit-learn (>=0.23) * keras 2 (optional) * tensorflow (optional) diff --git a/imblearn/_version.py b/imblearn/_version.py index 76055aad3..35ebd6438 100644 --- a/imblearn/_version.py +++ b/imblearn/_version.py @@ -22,4 +22,4 @@ # 'X.Y.dev0' is the canonical version of 'X.Y.dev' # -__version__ = "0.7.0.dev0" +__version__ = "0.7.0" diff --git a/setup.cfg b/setup.cfg index c2bce0b86..1062c584c 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.7.0.dev0 +current_version = 0.7.0 tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+)(?P\d+))? serialize = diff --git a/setup.py b/setup.py index c88e83d11..522755630 100755 --- a/setup.py +++ b/setup.py @@ -38,7 +38,7 @@ INSTALL_REQUIRES = [ 'numpy>=1.13.3', 'scipy>=0.19.1', - 'scikit-learn>=0.22', + 'scikit-learn>=0.23', 'joblib>=0.11' ] EXTRAS_REQUIRE = {