Raise Mooncake compat floor to 0.5.36 (fix Downgrade resolution)#338
Closed
ChrisRackauckas-Claude wants to merge 1 commit into
Closed
Raise Mooncake compat floor to 0.5.36 (fix Downgrade resolution)#338ChrisRackauckas-Claude wants to merge 1 commit into
ChrisRackauckas-Claude wants to merge 1 commit into
Conversation
The old Mooncake floor (0.5.6) let the Downgrade CI min-resolution pin an ancient Mooncake, which fed the Resolver.jl-capacity Unsatisfiable wall. Raise the floor to the latest registered Mooncake (0.5.36) so the min resolution picks a modern version. Verified on Julia 1.12 with julia-actions/julia-downgrade-compat downgrade.jl (mode=alldeps): the merged min-resolution now resolves successfully with Mooncake pinned at 0.5.36 (no Unsatisfiable). Co-Authored-By: Chris Rackauckas <accounts@chrisrackauckas.com>
Contributor
Author
|
Closing. Verified locally (ran the action's own downgrade.jl on the identical commit CI failed on) that raising the Mooncake compat floor does NOT fix the Downgrade lane. The failure is |
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
Raise the
Mooncake[compat]floor from0.5.6to the latest registered Mooncake (0.5.36) in the rootProject.toml— the only Project.toml in the repo that declares a Mooncake compat entry.Why
The old floor (
0.5.6) let the Downgrade CI min-resolution pin an ancient Mooncake, which fed the Resolver.jl-capacityUnsatisfiablewall. Limiting to the latest Mooncake stops the downgrade from selecting an old version.Raised floors
Project.toml0.5.60.5.36Also bumped the package version
5.4.2->5.4.3(compat narrowing = patch-level change).Verification (resolves_at_min = true)
Reproduced the downgrade min-resolution on Julia 1.12.6 using
julia-actions/julia-downgrade-compat'sdowngrade.jl(mode=alldeps, the same merged[extras]+[targets].testpath CI uses). Result:Unsatisfiable, exit code 0.0.5.36in the manifest (the new floor).So the floor-raise alone fixes the Downgrade Unsatisfiable wall for this repo; the Resolver-capacity blocker (#52) is not hit here.
Please ignore until reviewed by @ChrisRackauckas.