Add pattern back in for git tag versioning
This commit is contained in:
parent
6b455b66d5
commit
fabcabe31d
|
@ -15,6 +15,12 @@ dirty = true
|
||||||
vcs = "git"
|
vcs = "git"
|
||||||
style = "pep440"
|
style = "pep440"
|
||||||
metadata = "true"
|
metadata = "true"
|
||||||
|
pattern = '''
|
||||||
|
(?x)
|
||||||
|
^coriolis-((?P<epoch>\d+)!)?(?P<base>\d+(\.\d+)*)
|
||||||
|
([-._]?((?P<stage>[a-zA-Z]+)[-._]?(?P<revision>\d+)?))?
|
||||||
|
(\+(?P<tagged_metadata>.+))?$
|
||||||
|
'''
|
||||||
|
|
||||||
[tool.poetry.dependencies]
|
[tool.poetry.dependencies]
|
||||||
python = "^3.8"
|
python = "^3.8"
|
||||||
|
|
Loading…
Reference in New Issue