From 353be3663cc7eee8ba15a14a00d489bebf967bc7 Mon Sep 17 00:00:00 2001 From: Francesco Canovai Date: Mon, 20 Jan 2025 15:20:04 +0100 Subject: [PATCH] fix: pin boto3 (#140) Pin boto3 version to 1.35.99. version 1.36.0 of boto3 is affected by https://github.com/boto/boto3/issues/4398. Closes #139 Signed-off-by: Francesco Canovai --- lib/repo_funcs.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/repo_funcs.sh b/lib/repo_funcs.sh index 218810ca..bf32b6fb 100644 --- a/lib/repo_funcs.sh +++ b/lib/repo_funcs.sh @@ -166,6 +166,7 @@ update_requirements() { barmanVersion=$(get_latest_barman_version) # If there's a new version we need to recreate the requirements files echo "barman[cloud,azure,snappy,google] == $barmanVersion" > requirements.in + echo "boto3 == 1.35.99" >> requirements.in # This will take the requirements.in file and generate a file # requirements.txt with the hashes for the required packages