From 287f8d12ded6bd8e5310a1aa2345edca66c6de36 Mon Sep 17 00:00:00 2001 From: Akshay Joshi Date: Wed, 4 Jan 2023 17:42:08 +0530 Subject: [PATCH] Update boto3 & botocore based on the supported python version. #5640 --- requirements.txt | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index fec8a9fb9..b7185f258 100644 --- a/requirements.txt +++ b/requirements.txt @@ -49,8 +49,10 @@ pyotp==2.* qrcode==7.* Pillow==8.4.*; python_version <= '3.6' Pillow==9.*; python_version >= '3.7' -boto3==1.26.* -botocore==1.29.* +boto3==1.23.*; python_version <= '3.6' +boto3==1.26.*; python_version >= '3.7' +botocore==1.26.*; python_version <= '3.6' +botocore==1.29.*; python_version >= '3.7' urllib3==1.26.* Werkzeug==2.0.3; python_version <= '3.6' Werkzeug==2.1.2; python_version >= '3.7'