This is an automated email from the ASF dual-hosted git repository.
potiuk 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 b528e502eff Further limit setuptools after 82.0.1 is released (until
redoc fixes it) (#63202)
b528e502eff is described below
commit b528e502eff321ec07464fc9c0e05ede30c8d5aa
Author: Jarek Potiuk <[email protected]>
AuthorDate: Mon Mar 9 17:44:25 2026 +0100
Further limit setuptools after 82.0.1 is released (until redoc fixes it)
(#63202)
---
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 350546df09f..a5020cebff4 100644
--- a/devel-common/pyproject.toml
+++ b/devel-common/pyproject.toml
@@ -103,7 +103,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",