Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion clients/python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ classifiers = [
dependencies = [
"pydantic >= 2.11.0",
"python-dateutil",
"urllib3 >= 2.1.0",
"urllib3>=2.1.0,!=2.6.0",
]

[project.urls]
Expand Down
2 changes: 1 addition & 1 deletion kubernetes-tests/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ dependencies = [
# Urllib 2.6.0 breaks kubernetes client because kubernetes client uses deprecated in 2.0.0 and
# removed in 2.6.0 `getheaders()` call (instead of `headers` property.
# Tracked in https://github.com/kubernetes-client/python/issues/2477
"urllib3>=2.1.0,<2.6.0",
"urllib3>=2.1.0,!=2.6.0",
]

[tool.pytest]
Expand Down
4 changes: 4 additions & 0 deletions providers/cncf/kubernetes/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,10 @@ dependencies = [
# potential breaking changes in Airflow Core as well (kubernetes is added as extra, so Airflow
# core is not hard-limited via install-requirements, only by extra).
"kubernetes>=32.0.0,<33.0.0",
# Urllib 2.6.0 breaks kubernetes client because kubernetes client uses deprecated in 2.0.0 and
# removed in 2.6.0 `getheaders()` call (instead of `headers` property.
# Tracked in https://github.com/kubernetes-client/python/issues/2477
"urllib3>=2.1.0,!=2.6.0",
# the version is limited to the next MAJOR version and should by synced with the kubernetes version
"kubernetes_asyncio>=32.0.0,<33.0.0",
]
Expand Down
Loading