From c7211781562db2cf1582114aeda71df4b2917329 Mon Sep 17 00:00:00 2001 From: Greg Kempe Date: Thu, 1 Feb 2024 13:25:16 +0200 Subject: [PATCH] pin urllib2, not boto ref https://github.com/boto/botocore/issues/2926 --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 869d197be..f226b641a 100644 --- a/setup.py +++ b/setup.py @@ -41,7 +41,8 @@ python_requires='~=3.7', install_requires=[ 'django>=3.2,<4', - 'boto3>=1.7,<1.34', # python 3.7 no longer supported + 'boto3>=1.7', + 'urllib3<2', # botocore doesn't play well with urllib3 2.0+ see https://github.com/boto/botocore/issues/2926 'bluebell-akn>=2.3.0', 'cssutils>=2.3.0', 'django-ckeditor>=5.8',