File tree 7 files changed +18
-18
lines changed
7 files changed +18
-18
lines changed Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ The dependency requirements are based on the last scikit-learn release:
57
57
58
58
* scipy(>=0.17)
59
59
* numpy(>=1.11)
60
- * scikit-learn(>=0.21 )
60
+ * scikit-learn(>=0.22 )
61
61
* joblib(>=0.11)
62
62
* keras 2 (optional)
63
63
* tensorflow (optional)
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ The imbalanced-learn package requires the following dependencies:
9
9
10
10
* numpy (>=1.11)
11
11
* scipy (>=0.17)
12
- * scikit-learn (>=0.21 )
12
+ * scikit-learn (>=0.22 )
13
13
* keras 2 (optional)
14
14
* tensorflow (optional)
15
15
Original file line number Diff line number Diff line change 1
1
.. _changes_0_6 :
2
2
3
- Version 0.6.0 (under-development)
4
- =================================
3
+ Version 0.6.0
4
+ =============
5
5
6
6
Changelog
7
7
---------
Original file line number Diff line number Diff line change 22
22
# 'X.Y.dev0' is the canonical version of 'X.Y.dev'
23
23
#
24
24
25
- __version__ = "0.6.0.dev0 "
25
+ __version__ = "0.6.0"
Original file line number Diff line number Diff line change 1
1
numpy >= 1.11
2
2
scipy >= 0.17
3
- scikit-learn >= 0.21
3
+ scikit-learn >= 0.22
4
4
joblib >= 0.11
Original file line number Diff line number Diff line change 1
1
[bumpversion]
2
- current_version = 0.6.0.dev0
2
+ current_version = 0.6.0
3
3
tag = False
4
4
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+)(?P<dev>\d+))?
5
5
serialize =
@@ -21,14 +21,14 @@ test = pytest
21
21
22
22
[tool:pytest]
23
23
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
32
34
33
- filterwarnings =
34
- ignore:the matrix subclass:PendingDeprecationWarning
Original file line number Diff line number Diff line change 38
38
INSTALL_REQUIRES = [
39
39
'numpy>=1.11' ,
40
40
'scipy>=0.17' ,
41
- 'scikit-learn>=0.21 ' ,
41
+ 'scikit-learn>=0.22 ' ,
42
42
'joblib>=0.11'
43
43
]
44
44
EXTRAS_REQUIRE = {
You can’t perform that action at this time.
0 commit comments