Fix #9558 - Add a greater range for boto3 dependency (#9778)

* add boto3 wiggle room

* add boto3 wiggle room
This commit is contained in:
Pere Miquel Brull 2023-01-18 08:20:40 +01:00 committed by GitHub
parent ecee1a6ce2
commit 294277708b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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": {},