From cf6b7d9c21892aafe7fc204c498bbf8af8885e70 Mon Sep 17 00:00:00 2001 From: Miel Vander Sande Date: Thu, 6 Jul 2023 11:26:39 +0200 Subject: [PATCH] Update cachecontrol to 0.13.1 This version of cachecontrol uses an version of urllib3 that is incompatible with requests 2.30+, see https://github.com/psf/cachecontrol/issues/292 It results in the following error: `AttributeError: 'HTTPResponse' object has no attribute 'strict'` This version update should solve this issue, but in case it doesn't, you could also fix `urllib3==1.26.15` --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 1d798933..e4ddb059 100644 --- a/requirements.txt +++ b/requirements.txt @@ -41,4 +41,4 @@ bleach==5.0.1 # requests requests==2.31.0 -cachecontrol==0.12.11 +cachecontrol==0.13.1