This is an automated email from the ASF dual-hosted git repository.
rahulvats pushed a commit to branch v3-1-test
in repository https://gitbox.apache.org/repos/asf/airflow.git
commit 46778c07ccdf88fe5d73ce4a7d8e15b0e122b9a4
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Mon Mar 9 17:59:57 2026 +0100
[v3-1-test] Further limit setuptools after 82.0.1 is released (until redoc
fixes it) (#63202) (#63203)
(cherry picked from commit b528e502eff321ec07464fc9c0e05ede30c8d5aa)
Co-authored-by: Jarek Potiuk <[email protected]>
---
devel-common/pyproject.toml | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/devel-common/pyproject.toml b/devel-common/pyproject.toml
index 596ef7bcb64..f6d32fc99c6 100644
--- a/devel-common/pyproject.toml
+++ b/devel-common/pyproject.toml
@@ -98,7 +98,9 @@ dependencies = [
"sphinxcontrib-redoc>=1.6.0",
"sphinxcontrib-serializinghtml>=1.1.5",
"sphinxcontrib-spelling>=8.0.0",
- "setuptools!=82.0.0", # until
https://github.com/sphinx-contrib/redoc/issues/53 is resolved
+ # setuptools 82.0.0+ causes redoc to fail due to pkg_resources removal
+ # until https://github.com/sphinx-contrib/redoc/issues/53 is resolved
+ "setuptools<82.0.0",
]
"docs-gen" = [
"diagrams>=0.24.4",