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 <francesco.canovai@enterprisedb.com>
This commit is contained in:
Francesco Canovai
2025-01-20 15:20:04 +01:00
committed by GitHub
parent a5ffce7b1b
commit 39597ef7b6

View File

@@ -166,6 +166,7 @@ update_requirements() {
barmanVersion=$(get_latest_barman_version) barmanVersion=$(get_latest_barman_version)
# If there's a new version we need to recreate the requirements files # If there's a new version we need to recreate the requirements files
echo "barman[cloud,azure,snappy,google] == $barmanVersion" > requirements.in 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 # This will take the requirements.in file and generate a file
# requirements.txt with the hashes for the required packages # requirements.txt with the hashes for the required packages