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 d6340b8 commit b45bcf0Copy full SHA for b45bcf0
pyproject.toml
@@ -21,6 +21,9 @@ dependencies = [
21
"jinja2",
22
"polars-lts-cpu",
23
"textual",
24
+ # urllib>=2.4.0 fails to validate DLS Kubernetes certificates
25
+ # https://github.com/kubernetes-client/python/issues/2394
26
+ "urllib3<2.4.0",
27
]
28
29
dynamic = ["version"]
@@ -58,7 +61,7 @@ version_file = "src/edge_containers_cli/_version.py"
58
61
59
62
[tool.pyright]
60
63
typeCheckingMode = "standard"
-reportMissingImports = false # Ignore missing stubs in imported modules
64
+reportMissingImports = false # Ignore missing stubs in imported modules
65
66
[tool.pytest.ini_options]
67
# Run pytest with all our checkers, and don't spam us with massive tracebacks on error
0 commit comments