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
2 changes: 1 addition & 1 deletion providers/apache/beam/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ dependencies = [
# Apache Beam > 2.53.0 and pyarrow > 14.0.1 fix https://nvd.nist.gov/vuln/detail/CVE-2023-47248.
'apache-beam>=2.53.0; python_version < "3.12"',
'apache-beam>=2.57.0; python_version >= "3.12"',
"pyarrow>=14.0.1",
"pyarrow>=16.1.0",
"numpy>=1.26.0",

]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@
__version__ = "6.0.4"

if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse(
"2.9.0"
"2.10.0"
):
raise RuntimeError(
f"The package `apache-airflow-providers-apache-beam:{__version__}` needs Apache Airflow 2.9.0+"
f"The package `apache-airflow-providers-apache-beam:{__version__}` needs Apache Airflow 2.10.0+"
)
2 changes: 1 addition & 1 deletion providers/databricks/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ dependencies = [
"aiohttp>=3.9.2, <4",
"mergedeep>=1.3.4",
"pandas>=2.1.2,<2.2",
"pyarrow>=14.0.1",
"pyarrow>=16.1.0",
]

# The optional dependencies should be modified in place in the generated file
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@
__version__ = "7.3.1"

if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse(
"2.9.0"
"2.10.0"
):
raise RuntimeError(
f"The package `apache-airflow-providers-databricks:{__version__}` needs Apache Airflow 2.9.0+"
f"The package `apache-airflow-providers-databricks:{__version__}` needs Apache Airflow 2.10.0+"
)
2 changes: 1 addition & 1 deletion providers/google/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ dependencies = [
# further constrain it since older versions are buggy.
"proto-plus>=1.19.6",
# Used to write parquet files by BaseSqlToGCSOperator
"pyarrow>=14.0.1",
"pyarrow>=16.1.0",
"python-slugify>=7.0.0",
"PyOpenSSL>=23.0.0",
"sqlalchemy-bigquery>=1.2.1",
Expand Down
2 changes: 1 addition & 1 deletion providers/snowflake/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ dependencies = [
# However Airflow not fully supports it yet: https://github.com/apache/airflow/issues/28723
# In addition FAB also limit sqlalchemy to < 2.0
"pandas>=2.1.2,<2.2",
"pyarrow>=14.0.1",
"pyarrow>=16.1.0",
"snowflake-connector-python>=3.7.1",
"snowflake-sqlalchemy>=1.4.0",
"snowflake-snowpark-python>=1.17.0;python_version<'3.12'",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@
__version__ = "6.2.1"

if packaging.version.parse(packaging.version.parse(airflow_version).base_version) < packaging.version.parse(
"2.9.0"
"2.10.0"
):
raise RuntimeError(
f"The package `apache-airflow-providers-snowflake:{__version__}` needs Apache Airflow 2.9.0+"
f"The package `apache-airflow-providers-snowflake:{__version__}` needs Apache Airflow 2.10.0+"
)
Loading