Skip to content

Commit 70eaa48

Browse files
authored
fix: versioning and author default value for python (#109)
1 parent 560fcf1 commit 70eaa48

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

templates/python/pyproject.mustache

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[tool.poetry]
22
name = "{{{pythonPackageName}}}"
3-
version = "{{{packageVersion}}}"
3+
version = "v0.0.1a"
44
authors = [
5-
"{{infoName}}{{^infoName}}OpenAPI Generator Community{{/infoName}} <{{infoEmail}}{{^infoEmail}}[email protected]{{/infoEmail}}>",
5+
"STACKIT Developer Tools <developer-tools@stackit.cloud>",
66
]
77
description = "{{{appName}}}"
88
readme = "README.md"
@@ -18,10 +18,10 @@ packages = [
1818

1919
[tool.poetry.dependencies]
2020
python = ">=3.8,<4.0"
21-
stackit-core = "^0.0.1"
22-
requests = "^2.32.3"
23-
pydantic = "^2.9.2"
24-
python-dateutil = "^2.9.0.post0"
21+
stackit-core = ">=0.0.1a"
22+
requests = ">=2.32.3"
23+
pydantic = ">=2.9.2"
24+
python-dateutil = ">=2.9.0.post0"
2525

2626
[tool.poetry.group.dev.dependencies]
2727
black = ">=24.8.0"

0 commit comments

Comments
 (0)