Skip to content

Commit 1d702ac

Browse files
kaxilsanederchik
authored andcommitted
Add Pydantic as dep for the Python Client (apache#50765)
Python Client now need pydantic as we use the new version of the OpenAPI python client generator: https://github.com/OpenAPITools/openapi-generator/blob/master/modules/openapi-generator/src/main/resources/python/requirements.mustache#L14 It was added in OpenAPITools/openapi-generator#16624
1 parent 17a10b3 commit 1d702ac

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clients/python/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,9 @@ classifiers = [
5050
]
5151

5252
dependencies = [
53+
"pydantic >= 2.11.0",
5354
"python-dateutil",
54-
"urllib3 >= 2.1.0",
55+
"urllib3 >= 1.25.3",
5556
]
5657

5758
[project.urls]
@@ -65,7 +66,6 @@ Homepage = "https://airflow.apache.org/"
6566
[tool.hatch.envs.test]
6667
dependencies = [
6768
"pytest-cov>=2.8.1",
68-
"urllib3 >= 2.1.0",
6969
]
7070

7171
[tool.hatch.envs.test.scripts]

0 commit comments

Comments
 (0)