Skip to content

Commit 3025283

Browse files
committed
bumpversion 0.6.X
1 parent bea1915 commit 3025283

File tree

7 files changed

+18
-18
lines changed

7 files changed

+18
-18
lines changed

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ The dependency requirements are based on the last scikit-learn release:
5757

5858
* scipy(>=0.17)
5959
* numpy(>=1.11)
60-
* scikit-learn(>=0.21)
60+
* scikit-learn(>=0.22)
6161
* joblib(>=0.11)
6262
* keras 2 (optional)
6363
* tensorflow (optional)

doc/install.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ The imbalanced-learn package requires the following dependencies:
99

1010
* numpy (>=1.11)
1111
* scipy (>=0.17)
12-
* scikit-learn (>=0.21)
12+
* scikit-learn (>=0.22)
1313
* keras 2 (optional)
1414
* tensorflow (optional)
1515

doc/whats_new/v0.6.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.. _changes_0_6:
22

3-
Version 0.6.0 (under-development)
4-
=================================
3+
Version 0.6.0
4+
=============
55

66
Changelog
77
---------

imblearn/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@
2222
# 'X.Y.dev0' is the canonical version of 'X.Y.dev'
2323
#
2424

25-
__version__ = "0.6.0.dev0"
25+
__version__ = "0.6.0"

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
numpy>=1.11
22
scipy>=0.17
3-
scikit-learn>=0.21
3+
scikit-learn>=0.22
44
joblib>=0.11

setup.cfg

+11-11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.6.0.dev0
2+
current_version = 0.6.0
33
tag = False
44
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+)(?P<dev>\d+))?
55
serialize =
@@ -21,14 +21,14 @@ test = pytest
2121

2222
[tool:pytest]
2323
doctest_optionflags = NORMALIZE_WHITESPACE ELLIPSIS
24-
addopts =
25-
--ignore build_tools
26-
--ignore benchmarks
27-
--ignore doc
28-
--ignore examples
29-
--ignore maint_tools
30-
--doctest-modules
31-
-rs
24+
addopts =
25+
--ignore build_tools
26+
--ignore benchmarks
27+
--ignore doc
28+
--ignore examples
29+
--ignore maint_tools
30+
--doctest-modules
31+
-rs
32+
filterwarnings =
33+
ignore:the matrix subclass:PendingDeprecationWarning
3234

33-
filterwarnings =
34-
ignore:the matrix subclass:PendingDeprecationWarning

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
INSTALL_REQUIRES = [
3939
'numpy>=1.11',
4040
'scipy>=0.17',
41-
'scikit-learn>=0.21',
41+
'scikit-learn>=0.22',
4242
'joblib>=0.11'
4343
]
4444
EXTRAS_REQUIRE = {

0 commit comments

Comments
 (0)