diff --git a/.bumpversion.cfg b/.bumpversion.cfg new file mode 100644 index 0000000..069e484 --- /dev/null +++ b/.bumpversion.cfg @@ -0,0 +1,13 @@ +[bumpversion] +current_version = 0.7.1 +commit = True +tag = True +parse = (?P\d+)\.(?P\d+)\.(?P\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] diff --git a/setup.cfg b/setup.cfg index 42fe11d..dee8cbc 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,8 +1,9 @@ [pylint] disable = - too-many-arguments, - too-few-public-methods, - fixme, + too-many-arguments, + too-few-public-methods, + fixme, + [pycodestyle] max-line-length = 79 @@ -13,17 +14,3 @@ include_trailing_comma = True force_grid_wrap = 3 use_parentheses = True line_length = 79 - -[bumpversion] -current_version = 0.7.1 -commit = True -tag = True -parse = (?P\d+)\.(?P\d+)\.(?P\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]