Skip to content

Commit 23f9939

Browse files
authored
Relax Kubernetes client version support to <33.0.0 (apache#51195)
1 parent 7bea27c commit 23f9939

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

providers/cncf/kubernetes/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,13 +69,13 @@ dependencies = [
6969
# limiting minimum airflow version supported in cncf.kubernetes provider, due to the
7070
# potential breaking changes in Airflow Core as well (kubernetes is added as extra, so Airflow
7171
# core is not hard-limited via install-requirements, only by extra).
72-
"kubernetes>=29.0.0,<=31.0.0",
72+
"kubernetes>=29.0.0,<33.0.0",
7373
# The Kubernetes_asyncio package is used for providing Asynchronous (AsyncIO) client library for
7474
# standard Kubernetes API. The version is limited by minimum 18.20.1 because of introducing the ability to
7575
# load kubernetes config file from dictionary in that release and is limited to the next MAJOR version
7676
# (started from current 24.2.2 version) to prevent introducing some problems that could be due to some
7777
# major changes in the package.
78-
"kubernetes_asyncio>=29.0.0,<=31.0.0",
78+
"kubernetes_asyncio>=29.0.0,<33.0.0",
7979
]
8080

8181
[dependency-groups]

0 commit comments

Comments
 (0)