diff --git a/contributing-docs/testing/unit_tests.rst b/contributing-docs/testing/unit_tests.rst index 41ea9abff54e9..4aa5ded38f6de 100644 --- a/contributing-docs/testing/unit_tests.rst +++ b/contributing-docs/testing/unit_tests.rst @@ -1365,7 +1365,8 @@ to figure out one of the problems: "apache-airflow-providers-common-sql", "apache-airflow-providers-fab", # Additional devel dependencies (do not remove this line and add extra development dependencies) - "deltalake>=0.12.0", + # Limit deltalake to avoid issue with missing linux ARM wheels: https://github.com/delta-io/delta-rs/issues/4041 + "deltalake>=1.1.3,!=1.3.0", "apache-airflow-providers-microsoft-azure", ] diff --git a/providers/databricks/pyproject.toml b/providers/databricks/pyproject.toml index c909dcbd2c56a..64f8485528712 100644 --- a/providers/databricks/pyproject.toml +++ b/providers/databricks/pyproject.toml @@ -101,7 +101,8 @@ dev = [ "apache-airflow-providers-common-sql", "apache-airflow-providers-openlineage", # Additional devel dependencies (do not remove this line and add extra development dependencies) - "deltalake>=1.1.3", + # Limit deltalake to avoid issue with missing linux ARM wheels: https://github.com/delta-io/delta-rs/issues/4041 + "deltalake>=1.1.3,!=1.3.0", "apache-airflow-providers-fab>=2.2.0; python_version < '3.13'", "apache-airflow-providers-microsoft-azure", "apache-airflow-providers-common-sql[pandas,polars]",