Setting upper version bound for urllib3

Since google-auth doesn't support urllib3>2.0 (https://github.com/googleapis/google-auth-library-python/issues/1365), an upper version bound for urllib3 needs to be set. Otherwise the package is not installable, since the dependency to google-auth breaks.
This commit is contained in:
Jochen Saalfeld 2023-08-23 10:32:41 +02:00 committed by GitHub
parent 76ec6f5ce5
commit 27459d5c12
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 # MIT
urllib3>=1.24.2,<2.0 # MIT