File: setup.cfg

package info (click to toggle)
imbalanced-learn 0.7.0-6
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,540 kB
  • sloc: python: 12,338; sh: 435; makefile: 187; javascript: 50
file content (34 lines) | stat: -rw-r--r-- 655 bytes parent folder | download
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
[bumpversion]
current_version = 0.7.0
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
addopts = 
	--ignore build_tools
	--ignore benchmarks
	--ignore doc
	--ignore examples
	--ignore maint_tools
	--doctest-modules
	-rs
filterwarnings = 
	ignore:the matrix subclass:PendingDeprecationWarning