diff --git a/providers/apache/hdfs/docs/index.rst b/providers/apache/hdfs/docs/index.rst index 47ea73c5a0e53..077f5079e01d5 100644 --- a/providers/apache/hdfs/docs/index.rst +++ b/providers/apache/hdfs/docs/index.rst @@ -85,16 +85,17 @@ Requirements The minimum Apache Airflow version supported by this provider distribution is ``2.11.0``. -========================================== ===================================== +========================================== ====================================== PIP package Version required -========================================== ===================================== +========================================== ====================================== ``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-common-compat`` ``>=1.12.0`` ``hdfs[avro,dataframe,kerberos]`` ``>=2.5.4; python_version < "3.12"`` ``hdfs[avro,dataframe,kerberos]`` ``>=2.7.3; python_version >= "3.12"`` +``fastavro`` ``>=1.10.0; python_version >= "3.13"`` ``pandas`` ``>=2.1.2; python_version < "3.13"`` ``pandas`` ``>=2.2.3; python_version >= "3.13"`` -========================================== ===================================== +========================================== ====================================== Cross provider package dependencies ----------------------------------- diff --git a/providers/apache/hdfs/pyproject.toml b/providers/apache/hdfs/pyproject.toml index 245600dcb3da3..5cc0c959a6868 100644 --- a/providers/apache/hdfs/pyproject.toml +++ b/providers/apache/hdfs/pyproject.toml @@ -62,6 +62,7 @@ dependencies = [ "apache-airflow-providers-common-compat>=1.12.0", 'hdfs[avro,dataframe,kerberos]>=2.5.4;python_version<"3.12"', 'hdfs[avro,dataframe,kerberos]>=2.7.3;python_version>="3.12"', + 'fastavro>=1.10.0;python_version>="3.13"', # Need to pin to this version for Python 3.13 compatibility 'pandas>=2.1.2; python_version <"3.13"', 'pandas>=2.2.3; python_version >="3.13"', ] diff --git a/providers/cohere/docs/index.rst b/providers/cohere/docs/index.rst index c51b85c31fe2d..54fd789e8b46d 100644 --- a/providers/cohere/docs/index.rst +++ b/providers/cohere/docs/index.rst @@ -91,13 +91,14 @@ Requirements The minimum Apache Airflow version supported by this provider distribution is ``2.11.0``. -========================================== ================== +========================================== ====================================== PIP package Version required -========================================== ================== +========================================== ====================================== ``apache-airflow`` ``>=2.11.0`` ``apache-airflow-providers-common-compat`` ``>=1.8.0`` ``cohere`` ``>=5.13.4`` -========================================== ================== +``fastavro`` ``>=1.10.0; python_version >= "3.13"`` +========================================== ====================================== Cross provider package dependencies ----------------------------------- diff --git a/providers/cohere/pyproject.toml b/providers/cohere/pyproject.toml index 507e1d137bcc9..296b0604ffdf4 100644 --- a/providers/cohere/pyproject.toml +++ b/providers/cohere/pyproject.toml @@ -61,6 +61,7 @@ dependencies = [ "apache-airflow>=2.11.0", "apache-airflow-providers-common-compat>=1.8.0", "cohere>=5.13.4", + 'fastavro>=1.10.0;python_version>="3.13"', # Need to pin to this version for Python 3.13 compatibility ] [dependency-groups] diff --git a/providers/databricks/pyproject.toml b/providers/databricks/pyproject.toml index 42837674e0927..d9524a0d9b68f 100644 --- a/providers/databricks/pyproject.toml +++ b/providers/databricks/pyproject.toml @@ -97,7 +97,7 @@ dependencies = [ "apache-airflow-providers-google>=10.24.0" ] "avro" = [ - "fastavro>=1.9.0" + 'fastavro>=1.10.0;python_version>="3.12"' # Need to pin to this version for Python 3.13 compatibility ] [dependency-groups]