Skip to content

Commit b647e9a

Browse files
committed
Set an upper limit on the urllib3 dependency
With urllib3 2.4.0 stricter certificate validity checks were added when running on Python 3.13+: urllib3/urllib3#3571. This triggers errors such as the following: > [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: Missing Authority > Key Identifier It is however only for users with Kubernetes clusters that have been set up without proper, valid certificates. Notably, this was the case for AWS EKS clusters created with Kubernetes v1.16 and earlier.
1 parent 0c56ef1 commit b647e9a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ google-auth>=1.0.1 # Apache-2.0
77
websocket-client>=0.32.0,!=0.40.0,!=0.41.*,!=0.42.* # LGPLv2+
88
requests # Apache-2.0
99
requests-oauthlib # ISC
10-
urllib3>=1.24.2 # MIT
10+
urllib3>=1.24.2,<2.4.0 # MIT
1111
durationpy>=0.7 # MIT

0 commit comments

Comments
 (0)