Skip to content

Commit

Permalink
REL bumpversion to 0.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
glemaitre committed Dec 28, 2022
1 parent 524ca03 commit 64fc1ca
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 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.10.0"
__version__ = "0.10.1"
17 changes: 9 additions & 8 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[bumpversion]
current_version = 0.10.0
current_version = 0.10.1
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,17 +22,17 @@ 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
target-version = ['py37']
ignore =
ignore =
E24,
E121,
E123,
Expand All @@ -44,17 +44,18 @@ ignore =
E741,
W503,
W504
exclude =
exclude =
.git,
__pycache__,
dist,
doc/_build,
doc/auto_examples,
build,
per-file-ignores =
per-file-ignores =
examples/*: E402
doc/conf.py: E402

[mypy]
ignore_missing_imports = True
allow_redefinition = True

0 comments on commit 64fc1ca

Please sign in to comment.