Skip to content

Commit

Permalink
fix setup.cfg for zest.releaser
Browse files Browse the repository at this point in the history
  • Loading branch information
PetrDlouhy committed Apr 17, 2024
1 parent 76b7f2e commit 5436e02
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ commit_args = --no-verify
tag = True
tag_name = {new_version}
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\+\w+-(?P<dev>\d+))?
serialize =
serialize =
{major}.{minor}.{patch}+{$BRANCH_NAME}-{dev}
{major}.{minor}.{patch}
message = Version updated from {current_version} to {new_version}
Expand All @@ -19,7 +19,7 @@ long_description_content_type = text/markdown
author = Corey Oordt
author_email = [email protected]
url = http://github.com/jazzband/django-categories
classifiers =
classifiers =
Framework :: Django

[options]
Expand All @@ -28,17 +28,17 @@ include_package_data = True
packages = find:

[options.packages.find]
exclude =
exclude =
example*
docs
build
include =
include =
categories
categories.*

[flake8]
ignore = D203,W503,E501
exclude =
exclude =
.git
.tox
docs
Expand All @@ -65,3 +65,6 @@ search = Unreleased
[bumpversion:file(diff link):CHANGELOG.md]
search = {current_version}...HEAD
replace = {current_version}...{new_version}

[zest.releaser]
python-file-with-version = categories/__init__.py

0 comments on commit 5436e02

Please sign in to comment.