Fix sphinx-tabs/sphinx-toolbox dependency conflict#722
Merged
waltsims merged 1 commit intodependabot/pip/sphinx-toolbox-4.1.2from May 6, 2026
Merged
Conversation
Agent-Logs-Url: https://github.com/waltsims/k-wave-python/sessions/c4af7d4b-8350-4f62-bc0a-39bf94531dc7 Co-authored-by: waltsims <8669206+waltsims@users.noreply.github.com>
Copilot created this pull request from a session on behalf of
waltsims
May 6, 2026 06:37
View session
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## dependabot/pip/sphinx-toolbox-4.1.2 #722 +/- ##
====================================================================
Coverage 74.40% 74.40%
====================================================================
Files 56 56
Lines 8026 8026
Branches 1570 1570
====================================================================
Hits 5972 5972
Misses 1437 1437
Partials 617 617
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
4cfa213
into
dependabot/pip/sphinx-toolbox-4.1.2
153 checks passed
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.
sphinx-toolbox==4.1.2requiressphinx-tabs<3.4.7, which conflicts with the previously pinnedsphinx-tabs==3.4.7, causingResolutionImpossibleerrors in docs install CI.Changes
sphinx-tabspin from3.4.7→3.4.5(highest version satisfyingsphinx-toolbox 4.1.2's constraint) inpyproject.tomluv.lockGreptile Summary
This PR resolves a
ResolutionImpossibleerror in docs install CI by downgrading thesphinx-tabspin from==3.4.7to==3.4.5, which satisfiessphinx-toolbox==4.1.2's declaredsphinx-tabs<3.4.7upper bound. Theuv.lockis regenerated accordingly, picking up a lockfile format revision bump (1 → 3) that addsupload-timemetadata to every package entry.pyproject.toml: single-line version pin change (sphinx-tabs==3.4.7→==3.4.5) under thedocsextras group.uv.lock: full re-resolution withsphinx-tabs 3.4.5now resolved; all package hashes and sizes are preserved; onlyupload-timefields and therevisionheader are new additions from the updated uv format.Confidence Score: 5/5
Safe to merge; the only functional change is a one-line docs-dependency version pin that unblocks CI.
The change is limited to the docs extras group and has no effect on the runtime package or its tests. sphinx-tabs 3.4.5 is a stable release that satisfies sphinx-toolbox 4.1.2's constraint, and the lockfile correctly reflects the resolved version with all hashes intact.
No files require special attention.
Important Files Changed
Sequence Diagram
sequenceDiagram participant pip as pip / uv resolver participant toml as pyproject.toml participant toolbox as sphinx-toolbox==4.1.2 participant tabs as sphinx-tabs pip->>toml: read docs extras toml-->>pip: sphinx-toolbox==4.1.2, sphinx-tabs==3.4.5 pip->>toolbox: check constraints toolbox-->>pip: requires sphinx-tabs<3.4.7 pip->>tabs: resolve sphinx-tabs==3.4.5 tabs-->>pip: satisfies <3.4.7 pip-->>toml: resolution success → uv.lock writtenReviews (1): Last reviewed commit: "Fix sphinx-tabs/sphinx-toolbox conflict:..." | Re-trigger Greptile