Skip to content

Commit 9ca2145

Browse files
committed
REL bumpversion 0.10
1 parent 63997cb commit 9ca2145

File tree

2 files changed

+23
-39
lines changed

2 files changed

+23
-39
lines changed

imblearn/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@
2222
# 'X.Y.dev0' is the canonical version of 'X.Y.dev'
2323
#
2424

25-
__version__ = "0.10.0.dev0"
25+
__version__ = "0.10.0"

setup.cfg

+22-38
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.10.0.dev0
2+
current_version = 0.10.0
33
tag = False
44
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+)(?P<dev>\d+))?
55
serialize =
@@ -30,46 +30,30 @@ filterwarnings =
3030
ignore:the matrix subclass:PendingDeprecationWarning
3131

3232
[flake8]
33-
# max line length for black
3433
max-line-length = 88
3534
target-version = ['py37']
36-
# Default flake8 3.5 ignored flags
37-
ignore=
38-
# check ignored by default in flake8. Meaning unclear.
39-
E24,
40-
# continuation line under-indented
41-
E121,
42-
# closing bracket does not match indentation
43-
E123,
44-
# continuation line over-indented for hanging indent
45-
E126,
46-
# space before : (needed for how black formats slicing)
47-
E203,
48-
# missing whitespace around arithmetic operator
49-
E226,
50-
# multiple statements on one line (def)
51-
E704,
52-
# do not assign a lambda expression, use a def
53-
E731,
54-
# do not use variables named 'l', 'O', or 'I'
55-
E741,
56-
# line break before binary operator
57-
W503,
58-
# line break after binary operator
59-
W504
60-
exclude=
61-
.git,
62-
__pycache__,
63-
dist,
64-
doc/_build,
65-
doc/auto_examples,
66-
build,
67-
68-
# It's fine not to put the import at the top of the file in the examples
69-
# folder.
35+
ignore =
36+
E24,
37+
E121,
38+
E123,
39+
E126,
40+
E203,
41+
E226,
42+
E704,
43+
E731,
44+
E741,
45+
W503,
46+
W504
47+
exclude =
48+
.git,
49+
__pycache__,
50+
dist,
51+
doc/_build,
52+
doc/auto_examples,
53+
build,
7054
per-file-ignores =
71-
examples/*: E402
72-
doc/conf.py: E402
55+
examples/*: E402
56+
doc/conf.py: E402
7357

7458
[mypy]
7559
ignore_missing_imports = True

0 commit comments

Comments
 (0)