1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
[bumpversion]
current_version = 0.12.4
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+)(?P<dev>\d+))?
serialize =
{major}.{minor}.{patch}.{release}{dev}
{major}.{minor}.{patch}
[bumpversion:part:release]
optional_value = gamma
values =
dev
gamma
[bumpversion:part:dev]
[bumpversion:file:imblearn/_version.py]
[aliases]
test = pytest
[tool:pytest]
doctest_optionflags = NORMALIZE_WHITESPACE ELLIPSIS
testpaths = imblearn
addopts =
--doctest-modules
--color=yes
-rs
filterwarnings =
ignore:the matrix subclass:PendingDeprecationWarning
[flake8]
max-line-length = 88
target-version = ['py38']
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
[mypy]
ignore_missing_imports = True
allow_redefinition = True
|