This is an automated email from the ASF dual-hosted git repository.
kaxilnaik 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 327d36c6e47 Limit astroid to < 4 to fix broken docs builds (#56419)
327d36c6e47 is described below
commit 327d36c6e47d3b91ddd067275931bedc020ea1b2
Author: Amogh Desai <[email protected]>
AuthorDate: Mon Oct 6 11:44:30 2025 +0530
Limit astroid to < 4 to fix broken docs builds (#56419)
(cherry picked from commit 5730c43ff40551c4b612afdd879a377cf204d979)
---
devel-common/pyproject.toml | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/devel-common/pyproject.toml b/devel-common/pyproject.toml
index 91df934c24a..4147084bdcb 100644
--- a/devel-common/pyproject.toml
+++ b/devel-common/pyproject.toml
@@ -67,7 +67,8 @@ dependencies = [
"twine>=4.0.2",
]
"docs" = [
- "astroid>=3",
+ # Astroid 4 released 5 Oct 2025 breaks autoapi
https://github.com/apache/airflow/issues/56420
+ "astroid>=3,<4",
"checksumdir>=1.2.0",
"rich-click>=1.7.1",
"click>=8.1.8",