Skip to content

Commit

Permalink
bumpversion 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
glemaitre committed Jan 11, 2022
1 parent 3198e56 commit ef4edde
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
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.9.0.dev0"
__version__ = "0.9.0"
13 changes: 7 additions & 6 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[bumpversion]
current_version = 0.9.0.dev0
current_version = 0.9.0
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+)(?P<dev>\d+))?
serialize =
serialize =
{major}.{minor}.{patch}.{release}{dev}
{major}.{minor}.{patch}

[bumpversion:part:release]
optional_value = gamma
values =
values =
dev
gamma

Expand All @@ -22,19 +22,20 @@ test = pytest
[tool:pytest]
doctest_optionflags = NORMALIZE_WHITESPACE ELLIPSIS
testpaths = imblearn
addopts =
addopts =
--doctest-modules
--color=yes
-rs
filterwarnings =
filterwarnings =
ignore:the matrix subclass:PendingDeprecationWarning

[flake8]
max-line-length = 88
ignore = E121,E123,E126,E226,E24,E704,W503,W504,E203
per-file-ignores =
per-file-ignores =
examples/*: E402

[mypy]
ignore_missing_imports = True
allow_redefinition = True

0 comments on commit ef4edde

Please sign in to comment.