This is an automated email from the ASF dual-hosted git repository.
jiayu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sedona.git
The following commit(s) were added to refs/heads/master by this push:
new e3941bf4f8 [DOCS] Pin sphinx version to fix the doc build (#2551)
e3941bf4f8 is described below
commit e3941bf4f8110f57751c8f8a123f4de9e06969f7
Author: Jia Yu <[email protected]>
AuthorDate: Wed Dec 3 22:36:30 2025 -0700
[DOCS] Pin sphinx version to fix the doc build (#2551)
---
pyproject.toml | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/pyproject.toml b/pyproject.toml
index 8b0c6be2f5..bc80f9c30c 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -46,7 +46,9 @@ docs = [
"pymdown-extensions",
"mike",
"blacken-docs",
- "sphinx",
- "sphinx_rtd_theme",
+ # TODO: sphinx_rtd_theme only supports Sphinx < 9.0, consider migrating to a
different theme or wait for sphinx_rtd_theme to support Sphinx 9+
+ # Using Sphinx 6.2.1 as it's the latest version supporting Python >= 3.8
(Sphinx 7+ requires Python >= 3.9, Sphinx 8+ requires Python >= 3.11)
+ "sphinx==6.2.1",
+ "sphinx_rtd_theme==3.0.2",
"sphinx-autobuild",
]