Skip to content

Commit

Permalink
REL bumpversion 0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
glemaitre committed Dec 9, 2022
1 parent 63997cb commit 9ca2145
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 39 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.dev0"
__version__ = "0.10.0"
60 changes: 22 additions & 38 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.10.0.dev0
current_version = 0.10.0
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+)(?P<dev>\d+))?
serialize =
Expand Down Expand Up @@ -30,46 +30,30 @@ filterwarnings =
ignore:the matrix subclass:PendingDeprecationWarning

[flake8]
# max line length for black
max-line-length = 88
target-version = ['py37']
# Default flake8 3.5 ignored flags
ignore=
# check ignored by default in flake8. Meaning unclear.
E24,
# continuation line under-indented
E121,
# closing bracket does not match indentation
E123,
# continuation line over-indented for hanging indent
E126,
# space before : (needed for how black formats slicing)
E203,
# missing whitespace around arithmetic operator
E226,
# multiple statements on one line (def)
E704,
# do not assign a lambda expression, use a def
E731,
# do not use variables named 'l', 'O', or 'I'
E741,
# line break before binary operator
W503,
# line break after binary operator
W504
exclude=
.git,
__pycache__,
dist,
doc/_build,
doc/auto_examples,
build,

# It's fine not to put the import at the top of the file in the examples
# folder.
ignore =
E24,
E121,
E123,
E126,
E203,
E226,
E704,
E731,
E741,
W503,
W504
exclude =
.git,
__pycache__,
dist,
doc/_build,
doc/auto_examples,
build,
per-file-ignores =
examples/*: E402
doc/conf.py: E402
examples/*: E402
doc/conf.py: E402

[mypy]
ignore_missing_imports = True
Expand Down

0 comments on commit 9ca2145

Please sign in to comment.