Skip to content

Commit

Permalink
chore: Fix tag pattern
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon committed Feb 6, 2024
1 parent af55fb8 commit 8235d90
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,12 @@ tap-circle-ci = 'tap_circle_ci.tap:TapCircleCI.cli'

[tool.poetry-dynamic-versioning]
enable = true
latest-tag = true
pattern = """
(?x) (?# ignore whitespace)
^v?((?P<epoch>\\d+)!)?(?P<base>\\d+(\\.\\d+)*) (?# v1.2.3 or v1!2000.1.2)
([-._]?((?P<stage>[a-zA-Z]+)[-._]?(?P<revision>\\d+)?))? (?# b0)
(\\+(?P<tagged_metadata>.+))?$ (?# +linux)
"""
style = "pep440"

[tool.ruff]
Expand Down

0 comments on commit 8235d90

Please sign in to comment.