This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch v3-1-test
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/v3-1-test by this push:
new 8af4aa252b4 [v3-1-test] Limit deltalake again to 1.3.0 due to missing
ARM .whl files (#60098) (#60101)
8af4aa252b4 is described below
commit 8af4aa252b4f2e9c9e64b9f646283596b9ea245f
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Sun Jan 4 20:23:27 2026 +0100
[v3-1-test] Limit deltalake again to 1.3.0 due to missing ARM .whl files
(#60098) (#60101)
The ARM linux whl packages are missing for deltalake 1.3.0 - and it causes
problems in CI systems that run tests on ARM in linux, also it adds a lot of
overhead for anyone running linux docker on Mac OS ARM devices (i.e. pretty
much all of modern Mac OS).
This is tracked in https://github.com/delta-io/delta-rs/issues/4041
(cherry picked from commit 78c911b0a200ed5eda7716074f8f47b32550ccd6)
Co-authored-by: Jarek Potiuk <[email protected]>
---
contributing-docs/testing/unit_tests.rst | 3 ++-
providers/databricks/pyproject.toml | 3 ++-
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/contributing-docs/testing/unit_tests.rst
b/contributing-docs/testing/unit_tests.rst
index 1f65d1204bc..ce1cf9f3e86 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 4c862135bb3..385e5836445 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]",