docs: configure Sphinx directly and drop unmaintained sphinx-pyproject - #15129
Merged
cclauss merged 3 commits intoAug 31, 2026
Conversation
sphinx-pyproject has no releases supporting Python 3.14/3.15 and pins an old Sphinx, which blocks the docs build on newer interpreters. Move the [tool.sphinx-pyproject] config into a plain docs/conf.py (project name, version and authors single-sourced from pyproject.toml via stdlib tomllib), drop the sphinx-pyproject dependency, and depend on sphinx>=8.2 directly. Also bump beautifulsoup4>=4.15 and pandas>=2.3.3. No changes to uv.lock.
for more information, see https://pre-commit.ci
10 tasks
Contributor
Author
|
CI note: the docs-relevant checks are green — `build_docs` ✅, `ruff` ✅, `pre-commit.ci` ✅. The one red check (`build`) is an unrelated flake: `linear_algebra/matrix_inversion.py` doctest got scheduled onto a pytest-run-parallel worker ( |
cclauss
approved these changes
Aug 31, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Describe your change:
Replaces #15123 as a clean PR touching only
docs/conf.pyandpyproject.toml(no changes touv.lock), per @cclauss's request.sphinx-pyprojecthas no release supporting Python 3.14/3.15 and pins an old Sphinx, which blocks the docs build on newer interpreters. This PR:[tool.sphinx-pyproject]table into a plaindocs/conf.py. Projectname/version/authorare single-sourced frompyproject.tomlvia the stdlibtomllib, so they never drift from the packaging metadata.sphinx-pyprojectdependency (main deps + docs group) and depends onsphinx>=8.2directly.beautifulsoup4>=4.15andpandas>=2.3.3.docs/conf.pyexecutes cleanly andruff check/ruff formatpass.Checklist: