fix: rollback SciMLBase compat to 2.148, bump QuantumToolbox weakdep to 0.44#121
Merged
jack-champagne merged 2 commits intomainfrom Apr 14, 2026
Conversation
383b820 to
ac698a8
Compare
QuantumToolbox (extension weakdep) requires SciMLBase 2.x. The compat bump to SciMLBase 3 in #137 conflicts with QuantumToolbox 0.44 in the test environment — CompatHelper CI runs with force_latest_compatible_version=true, which treats "2.148, 3" as ^3 and forces SciMLBase to 3.x, leaving QuantumToolbox 0.44 unsatisfiable. Local resolution without that flag naturally picks SciMLBase 2.155.0 and everything works. Rolling back to "2.148" until QuantumToolbox gains SciMLBase 3 support. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
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
This PR fixes a compat conflict that was causing CI failures across all Julia versions.
Root cause
Two previously merged CompatHelper PRs combined to create an unsatisfiable dependency:
SciMLBasecompat to"2.148, 3"(adding 3.x support)QuantumToolbox(extension weakdep) compat to include0.44The problem: QuantumToolbox 0.44 requires SciMLBase 2.x. CompatHelper CI runs with
force_latest_compatible_version=true, which interprets"2.148, 3"as^3— forcing SciMLBase to 3.x. This leaves QuantumToolbox 0.44 unsatisfiable, which cascades toOrdinaryDiffEqLinearhaving no valid versions.Fix
Roll back
SciMLBasecompat to"2.148"(drop the premature 3.x entry). Local resolution withoutforce_latest_compatible_versionnaturally resolves toSciMLBase 2.155.0, which satisfies all deps including QuantumToolbox 0.44. The SciMLBase 3 compat should be re-added once QuantumToolbox releases a version supporting SciMLBase 3.x.Verification