From 9deb4fe5eb990902a44223ace3be2ba4ea6e4a85 Mon Sep 17 00:00:00 2001 From: Shantanu <12621235+hauntsaninja@users.noreply.github.com> Date: Wed, 4 Oct 2023 01:31:21 -0700 Subject: [PATCH] Drop urllib3 upper bound This was added in https://github.com/kubernetes-client/python/commit/27459d5c123c20b096d838ebb98e735134a2a981. Note that google-auth now requires urllib3>=2 in https://github.com/googleapis/google-auth-library-python/pull/1389 (I'm also not sure that I follow the logic in https://github.com/kubernetes-client/python/pull/2105, since dependency resolvers will be able to work it out) --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 87b7841cc8..c78edbdacd 100644 --- a/requirements.txt +++ b/requirements.txt @@ -9,4 +9,4 @@ websocket-client>=0.32.0,!=0.40.0,!=0.41.*,!=0.42.* # LGPLv2+ requests # Apache-2.0 requests-oauthlib # ISC oauthlib>=3.2.2 # BSD -urllib3>=1.24.2,<2.0 # MIT +urllib3>=1.24.2 # MIT