This is an automated email from the ASF dual-hosted git repository.
ash 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 5730c43ff40 Limit astroid to < 4 to fix broken docs builds (#56419)
5730c43ff40 is described below
commit 5730c43ff40551c4b612afdd879a377cf204d979
Author: Amogh Desai <[email protected]>
AuthorDate: Mon Oct 6 11:44:30 2025 +0530
Limit astroid to < 4 to fix broken docs builds (#56419)
---
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 8b7b21c9e82..2808f3c58f1 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",