From 45e7ee6043109246b293aed641329e8cb4b25e35 Mon Sep 17 00:00:00 2001 From: Wim De Clercq Date: Mon, 2 May 2022 13:19:52 +0200 Subject: [PATCH] Require minimum urllib 1.26.0. We use an attribute (allowed_methods) from urllib which is only available since 1.26.0 so we should require this as minimum. Issue: marcospereirampj#196 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 556882f..da36d1d 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ setup( long_description=long_description, long_description_content_type="text/markdown", packages=['keycloak', 'keycloak.authorization', 'keycloak.tests'], - install_requires=['requests>=2.20.0', 'python-jose>=1.4.0'], + install_requires=['requests>=2.20.0', 'python-jose>=1.4.0', 'urllib>=1.26.0'], tests_require=['httmock>=1.2.5'], classifiers=[ 'Programming Language :: Python :: 3',