We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ebfdfd9 commit ef3bfbeCopy full SHA for ef3bfbe
pyproject.toml
@@ -43,7 +43,11 @@ dependencies = [
43
"packaging==24.2",
44
"google-cloud-filestore==1.12.0",
45
"google-cloud-storage",
46
- "Jinja2==3.1.6"
+ "Jinja2==3.1.6",
47
+ # Urllib 2.6.0 breaks kubernetes client because kubernetes client uses deprecated in 2.0.0 and
48
+ # removed in 2.6.0 `getheaders()` call (instead of `headers` property).
49
+ # Tracked in https://github.com/kubernetes-client/python/issues/2477
50
+ "urllib3<2.6.0",
51
]
52
53
[project.urls]
0 commit comments