From 5ebe751c03f915a40751d1f0226ab21ddfeccd27 Mon Sep 17 00:00:00 2001 From: Spill-Tea Date: Mon, 1 Jun 2026 00:07:02 -0700 Subject: [PATCH] fix(pyproject): Fix sphinx dependency version to build docs due to incompatibility with sphinx multiversion and sphinx v9 breaking change. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 32d1147..6065cf9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -35,7 +35,7 @@ exclude = ["benchmarks", "docs", "tests"] [project.optional-dependencies] dev = ["PyTemplate[doc,test,lint,type,commit]", "tox"] commit = ["pre-commit"] -doc = ["sphinx", "furo", "sphinx_multiversion"] +doc = ["sphinx<9.0.0", "furo", "sphinx_multiversion"] test = ["pytest", "coverage", "pytest-xdist"] lint = ["pylint", "ruff"] type = ["mypy"]