Update all docs dependencies to latest#242
Merged
Merged
Conversation
Replace the 110-line pip-freeze pin file with the ~13 top-level packages the docs build actually needs, with lower bounds at the versions the build was verified with. Transitive dependencies are no longer pinned, so dependabot has nothing to bump in /docs. Bump the Read the Docs Python from 3.8 to 3.12 (required by current torch/tensorflow) and drop the display_version theme option removed in sphinx-rtd-theme 3.x. Verified: sphinx-build succeeds with the resolved latest versions (Sphinx 9.1, torch 2.13, tensorflow 2.21, numpy 2.5). Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This was referenced Jul 23, 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.
Summary
Batch-replaces the 10 open dependabot PRs (#207, #209, #212, #214, #220, #221, #235, #236, #237, #238) touching
/docs.The docs requirements were a 110-line pip-freeze from 2023 that pinned every transitive dependency — which is why dependabot kept filing CVE bumps one package at a time. This PR:
docs/requirements.txtto the ~13 top-level packages the build actually needs (Sphinx toolchain + the librariespose_formatimports during autodoc), with>=lower bounds at the verified versions. Read the Docs now always installs latest, and dependabot has no pins left to bump in/docs, so this class of PR stops entirely.display_versiontheme option removed in sphinx-rtd-theme 3.x.Test plan
sphinx-build -b html docssucceeds; API pages render with contentpose_format.pose_testrst pointing at the moved test module, duplicate-object cosmetics) — not dependency-related🤖 Generated with Claude Code