Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions airflow-core/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ dependencies = [
# TODO: We can remove it once boto3 and aiobotocore both have compatible botocore version or
# boto3 have native aync support and we move away from aio aiobotocore
"aiobotocore" = [
"aiobotocore>=2.13.0",
"apache-airflow-providers-amazon[aiobotocore]",
]
"async" = [
"eventlet>=0.37.0",
Expand All @@ -165,13 +165,12 @@ dependencies = [
"atlasclient>=0.1.2",
]
"apache-webhdfs" = [
"hdfs[avro,dataframe,kerberos]>=2.0.4",
"apache-airflow-providers-apache-hdfs",
]
"cgroups" = [
"cgroupspy>=0.2.2",
]
"cloudpickle" = [
# Latest version of apache-beam requires cloudpickle~=2.2.1
"cloudpickle>=2.2.1",
]
"github-enterprise" = [
Expand Down Expand Up @@ -212,7 +211,7 @@ dependencies = [
"s3fs" = [
# This is required for support of S3 file system which uses aiobotocore
# which can have a conflict with boto3 as mentioned in aiobotocore extra
"s3fs>=2023.10.0",
"apache-airflow-providers-amazon[s3fs]",
]
"sentry" = [
"blinker>=1.1",
Expand Down
14 changes: 7 additions & 7 deletions providers/amazon/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -50,26 +50,26 @@ The package supports the following python versions: 3.9,3.10,3.11,3.12
Requirements
------------

========================================== ======================
========================================== =====================
PIP package Version required
========================================== ======================
========================================== =====================
``apache-airflow`` ``>=2.9.0``
``apache-airflow-providers-common-compat`` ``>=1.6.0``
``apache-airflow-providers-common-sql`` ``>=1.20.0``
``apache-airflow-providers-http``
``boto3`` ``>=1.37.0``
``botocore`` ``>=1.34.90``
``botocore`` ``>=1.37.0``
``inflection`` ``>=0.5.1``
``watchtower`` ``>=3.0.0,!=3.3.0,<4``
``watchtower`` ``>=3.3.1,<4``
``jsonpath_ng`` ``>=1.5.3``
``redshift_connector`` ``>=2.0.918``
``redshift_connector`` ``>=2.1.3``
``asgiref`` ``>=2.3.0``
``PyAthena`` ``>=3.0.10``
``PyAthena`` ``>=3.10.0``
``jmespath`` ``>=0.7.0``
``python3-saml`` ``>=1.16.0``
``xmlsec`` ``>=1.3.14,!=1.3.15``
``sagemaker-studio`` ``>=1.0.9``
========================================== ======================
========================================== =====================

Cross provider package dependencies
-----------------------------------
Expand Down
10 changes: 5 additions & 5 deletions providers/amazon/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -65,14 +65,14 @@ dependencies = [
# of candidates to consider. Make sure to configure boto3 version here as well as in all the tools below
# in the `devel-dependencies` section to be the same minimum version.
"boto3>=1.37.0",
"botocore>=1.34.90",
"botocore>=1.37.0",
"inflection>=0.5.1",
# Allow a wider range of watchtower versions for flexibility among users
"watchtower>=3.0.0,!=3.3.0,<4",
"watchtower>=3.3.1,<4",
"jsonpath_ng>=1.5.3",
"redshift_connector>=2.0.918",
"redshift_connector>=2.1.3",
"asgiref>=2.3.0",
"PyAthena>=3.0.10",
"PyAthena>=3.10.0",
"jmespath>=0.7.0",
"python3-saml>=1.16.0",
# python3-saml is dependent on xmlsec and seems they do not pin it, pinning here would be needed
Expand All @@ -95,7 +95,7 @@ dependencies = [
# TODO: We can remove it once boto3 and aiobotocore both have compatible botocore version or
# boto3 have native async support and we move away from aio aiobotocore
"aiobotocore" = [
"aiobotocore[boto3]>=2.13.0",
"aiobotocore[boto3]>=2.20.0",
]
"cncf.kubernetes" = [
"apache-airflow-providers-cncf-kubernetes>=7.2.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1376,21 +1376,21 @@ def get_provider_info():
"apache-airflow-providers-common-sql>=1.20.0",
"apache-airflow-providers-http",
"boto3>=1.37.0",
"botocore>=1.34.90",
"botocore>=1.37.0",
"inflection>=0.5.1",
"watchtower>=3.0.0,!=3.3.0,<4",
"watchtower>=3.3.1,<4",
"jsonpath_ng>=1.5.3",
"redshift_connector>=2.0.918",
"redshift_connector>=2.1.3",
"asgiref>=2.3.0",
"PyAthena>=3.0.10",
"PyAthena>=3.10.0",
"jmespath>=0.7.0",
"python3-saml>=1.16.0",
"xmlsec!=1.3.15,>=1.3.14",
"sagemaker-studio>=1.0.9",
],
"optional-dependencies": {
"pandas": ["pandas>=2.1.2,<2.2"],
"aiobotocore": ["aiobotocore[boto3]>=2.13.0"],
"aiobotocore": ["aiobotocore[boto3]>=2.20.0"],
"cncf.kubernetes": ["apache-airflow-providers-cncf-kubernetes>=7.2.0"],
"s3fs": ["s3fs>=2023.10.0"],
"python3-saml": ["python3-saml>=1.16.0"],
Expand Down