chore: upgrade docs build toolchain and fix RTD build - #55
Merged
Conversation
magajh
marked this pull request as ready for review
May 13, 2026 04:10
MaferMazu
approved these changes
Aug 20, 2026
Contributor
Author
|
@MaferMazu thanks for the review! I've added the new line at the end of doc.in, so I think we are ready to merge |
magajh
force-pushed
the
maga/fix-read-the-docs-action
branch
from
August 20, 2026 17:45
a1394bc to
caad4e1
Compare
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.
What this PR does:
Fixes a broken Read the Docs build caused by an outdated pinned Sphinx version, modernizes the documentation toolchain, and updates
conf.pyto be compatible with the upgraded dependencies.Changes:
.readthedocs.ymlto useubuntu-24.04andPython 3.12html_sidebarsinconf.py—sidebar-logo.htmlrenamed tonavbar-logo.htmlinsphinx-book-theme 1.xlogo_onlyandextra_navbartheme options fromconf.pyrequirements/pip-tools.txt(dev tooling only, no runtime impact)Root cause of the broken build:
sphinx==4.2.0depends onpkg_resources(fromsetuptools), which is no longer available by default in modern Python environments. Upgrading Sphinx removes this dependency entirely.