diff --git a/imblearn/_version.py b/imblearn/_version.py index e67ae5b4f..a4fdd70ca 100644 --- a/imblearn/_version.py +++ b/imblearn/_version.py @@ -22,4 +22,4 @@ # 'X.Y.dev0' is the canonical version of 'X.Y.dev' # -__version__ = "0.10.0" +__version__ = "0.10.1" diff --git a/setup.cfg b/setup.cfg index 58df5fbe5..7c4181bca 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,14 +1,14 @@ [bumpversion] -current_version = 0.10.0 +current_version = 0.10.1 tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+)(?P\d+))? -serialize = +serialize = {major}.{minor}.{patch}.{release}{dev} {major}.{minor}.{patch} [bumpversion:part:release] optional_value = gamma -values = +values = dev gamma @@ -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, @@ -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 +