diff --git a/contributing-docs/testing/unit_tests.rst b/contributing-docs/testing/unit_tests.rst index 1f65d1204bca4..ce1cf9f3e8671 100644 --- a/contributing-docs/testing/unit_tests.rst +++ b/contributing-docs/testing/unit_tests.rst @@ -1417,7 +1417,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 4c862135bb36a..385e583644500 100644 --- a/providers/databricks/pyproject.toml +++ b/providers/databricks/pyproject.toml @@ -102,7 +102,8 @@ dev = [ "apache-airflow-providers-fab", "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]",