Skip to content

Commit e19f9f2

Browse files
committed
Fix python build
1 parent 7b02734 commit e19f9f2

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

clients/urlr-python/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
## [2.9.3] - 2025-06-30
4+
5+
- Fix Python build
36
## [2.9.2] - 2025-06-30
47

58
- Fix Python build

openapi-generator/config-python.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
projectName: URLR
22
packageName: urlr
3-
packageVersion: 2.9.2
3+
packageVersion: 2.9.3
44
infoName: URLR
55
infoEmail: contact@urlr.me
66
gitHost: github.com

openapi-generator/templates/python/pyproject.mustache

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,7 @@ authors = [
1515
{name = "{{infoName}}{{^infoName}}URLR{{/infoName}}",email = "{{infoEmail}}{{^infoEmail}}contact@urlr.me{{/infoEmail}}"},
1616
]
1717
{{/poetry1}}
18-
{{#licenseInfo}}
19-
license = "MIT"
20-
{{/licenseInfo}}
18+
license-expression = "MIT"
2119
readme = "README.md"
2220
{{#poetry1}}
2321
repository = "https://{{{gitHost}}}/{{{gitUserId}}}/{{{gitRepoId}}}"

openapi-generator/templates/python/setup.mustache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ setup(
4242
install_requires=REQUIRES,
4343
packages=find_packages(exclude=["test", "tests"]),
4444
include_package_data=True,
45-
license_expression="MIT",
45+
license="MIT",
4646
long_description_content_type='text/markdown',
4747
long_description="""\
4848
{{appDescription}}

0 commit comments

Comments
 (0)