From 294277708b3455cb18d00063ea837353d8e5e630 Mon Sep 17 00:00:00 2001 From: Pere Miquel Brull Date: Wed, 18 Jan 2023 08:20:40 +0100 Subject: [PATCH] Fix #9558 - Add a greater range for boto3 dependency (#9778) * add boto3 wiggle room * add boto3 wiggle room --- ingestion/setup.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/ingestion/setup.py b/ingestion/setup.py index fe6f218491a..257d3fc7aa5 100644 --- a/ingestion/setup.py +++ b/ingestion/setup.py @@ -30,7 +30,7 @@ def get_long_description(): VERSIONS = { "airflow": "apache-airflow==2.3.3", "avro-python3": "avro-python3~=1.10", - "boto3": "boto3~=1.26", # No need to add botocore separately. It's a dep from boto3 + "boto3": "boto3>=1.20,<2.0", # No need to add botocore separately. It's a dep from boto3 "geoalchemy2": "GeoAlchemy2~=0.12", "google-cloud-storage": "google-cloud-storage==1.43.0", "great-expectations": "great-expectations~=0.15.0", @@ -102,9 +102,7 @@ base_requirements = { plugins: Dict[str, Set[str]] = { - "airflow": { - "apache-airflow==2.3.3" - }, # Same as ingestion container. For development. + "airflow": {VERSIONS["airflow"]}, # Same as ingestion container. For development. "amundsen": {VERSIONS["neo4j"]}, "athena": {"PyAthena[SQLAlchemy]"}, "atlas": {},