This is an automated email from the ASF dual-hosted git repository.

rahulvats pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new f47d2d45d06 Limit deltalake to not include 1.3.0 version (#59977)
f47d2d45d06 is described below

commit f47d2d45d06b03c3581603fcb41e7f4180540cf4
Author: Rahul Vats <[email protected]>
AuthorDate: Wed Dec 31 22:35:40 2025 +0530

    Limit deltalake to not include 1.3.0 version (#59977)
---
 providers/databricks/pyproject.toml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/providers/databricks/pyproject.toml 
b/providers/databricks/pyproject.toml
index 20f6b855326..eedb984f3c1 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",
+    # deltalake 1.3.0 does not have Linux ARM64 wheels 
https://pypi.org/project/deltalake/1.3.0/#files
+    "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]",

Reply via email to