Skip to content

Commit

Permalink
bumpversion 0.6.X
Browse files Browse the repository at this point in the history
  • Loading branch information
glemaitre committed Dec 5, 2019
1 parent bea1915 commit 3025283
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ The dependency requirements are based on the last scikit-learn release:

* scipy(>=0.17)
* numpy(>=1.11)
* scikit-learn(>=0.21)
* scikit-learn(>=0.22)
* joblib(>=0.11)
* keras 2 (optional)
* tensorflow (optional)
Expand Down
2 changes: 1 addition & 1 deletion doc/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ The imbalanced-learn package requires the following dependencies:

* numpy (>=1.11)
* scipy (>=0.17)
* scikit-learn (>=0.21)
* scikit-learn (>=0.22)
* keras 2 (optional)
* tensorflow (optional)

Expand Down
4 changes: 2 additions & 2 deletions doc/whats_new/v0.6.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.. _changes_0_6:

Version 0.6.0 (under-development)
=================================
Version 0.6.0
=============

Changelog
---------
Expand Down
2 changes: 1 addition & 1 deletion imblearn/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@
# 'X.Y.dev0' is the canonical version of 'X.Y.dev'
#

__version__ = "0.6.0.dev0"
__version__ = "0.6.0"
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
numpy>=1.11
scipy>=0.17
scikit-learn>=0.21
scikit-learn>=0.22
joblib>=0.11
22 changes: 11 additions & 11 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.6.0.dev0
current_version = 0.6.0
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+)(?P<dev>\d+))?
serialize =
Expand All @@ -21,14 +21,14 @@ test = pytest

[tool:pytest]
doctest_optionflags = NORMALIZE_WHITESPACE ELLIPSIS
addopts =
--ignore build_tools
--ignore benchmarks
--ignore doc
--ignore examples
--ignore maint_tools
--doctest-modules
-rs
addopts =
--ignore build_tools
--ignore benchmarks
--ignore doc
--ignore examples
--ignore maint_tools
--doctest-modules
-rs
filterwarnings =
ignore:the matrix subclass:PendingDeprecationWarning

filterwarnings =
ignore:the matrix subclass:PendingDeprecationWarning
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
INSTALL_REQUIRES = [
'numpy>=1.11',
'scipy>=0.17',
'scikit-learn>=0.21',
'scikit-learn>=0.22',
'joblib>=0.11'
]
EXTRAS_REQUIRE = {
Expand Down

0 comments on commit 3025283

Please sign in to comment.