chore: reorganize setup.cfg

This commit is contained in:
Alexander Engelsberger 2022-01-10 20:27:35 +01:00
parent a28601751e
commit ca24422ab0
No known key found for this signature in database
GPG Key ID: BE3F5909FF0D83E3
2 changed files with 17 additions and 17 deletions

13
.bumpversion.cfg Normal file
View File

@ -0,0 +1,13 @@
[bumpversion]
current_version = 0.7.1
commit = True
tag = True
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)
serialize = {major}.{minor}.{patch}
message = build: bump version {current_version} → {new_version}
[bumpversion:file:setup.py]
[bumpversion:file:./prototorch/__init__.py]
[bumpversion:file:./docs/source/conf.py]

View File

@ -1,8 +1,9 @@
[pylint] [pylint]
disable = disable =
too-many-arguments, too-many-arguments,
too-few-public-methods, too-few-public-methods,
fixme, fixme,
[pycodestyle] [pycodestyle]
max-line-length = 79 max-line-length = 79
@ -13,17 +14,3 @@ include_trailing_comma = True
force_grid_wrap = 3 force_grid_wrap = 3
use_parentheses = True use_parentheses = True
line_length = 79 line_length = 79
[bumpversion]
current_version = 0.7.1
commit = True
tag = True
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)
serialize = {major}.{minor}.{patch}
message = build: bump version {current_version} → {new_version}
[bumpversion:file:setup.py]
[bumpversion:file:./prototorch/__init__.py]
[bumpversion:file:./docs/source/conf.py]