From c23732eca6ec9fcceaf68b4b290af1958f2113d0 Mon Sep 17 00:00:00 2001 From: Francesco Canovai Date: Mon, 20 Jan 2025 14:50:53 +0100 Subject: [PATCH] fix: pin boto3 Pin boto version to 1.35.99. Version 1.36+ of boto3 are affected by https://github.com/boto/boto3/issues/4398. Signed-off-by: Francesco Canovai --- UBI/update.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/UBI/update.sh b/UBI/update.sh index 713a74b4..da1d4291 100755 --- a/UBI/update.sh +++ b/UBI/update.sh @@ -562,6 +562,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