Raise Mooncake compat floor to 0.5.36 (fix Downgrade resolution)#1070
Closed
ChrisRackauckas-Claude wants to merge 1 commit into
Closed
Raise Mooncake compat floor to 0.5.36 (fix Downgrade resolution)#1070ChrisRackauckas-Claude wants to merge 1 commit into
ChrisRackauckas-Claude wants to merge 1 commit into
Conversation
Raise the Mooncake [compat] floor from 0.5.15 to the latest 0.5.36 in both Project.toml files that declare it (root weakdep + test/AD dep). This stops the downgrade resolution from pinning an ancient Mooncake, which was the promotion-caused Downgrade Unsatisfiable wall. Verified on Julia 1.12 with julia-actions/julia-downgrade-compat@v2.5.1 (downgrade.jl) at minimum versions: test/AD resolves cleanly with Mooncake pinned to =0.5.36 (resolves_at_min=true); root '.' merged min-resolution also resolves. Bump LinearSolve patch version 3.87.0 -> 3.87.1 (compat narrowing). 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.
Summary
Raises the
Mooncake[compat]floor from0.5.15to the latest registered0.5.36in everyProject.tomlthat declares Mooncake compat. This is the "limit to latest Mooncake" fix for the promotion-caused DowngradeUnsatisfiablewall: the old0.5.15floor let the downgrade resolver try to pin an ancient Mooncake, which Resolver.jl could not satisfy.Raised floors (both
0.5.15->0.5.36)Project.toml[compat]Mooncake (weakdep)0.5.150.5.36test/AD/Project.toml[compat]Mooncake (dep)0.5.150.5.36Only
[compat]Mooncake lines were touched;[deps]/[weakdeps]UUID lines are untouched. Root package version bumped3.87.0->3.87.1(a compat narrowing is a patch-level change; a Mooncake weakdep floor is not public API).test/AD/Project.tomlhas noversionfield (test sub-env), so no bump there.Verification (resolves_at_min = true)
Ran
julia-actions/julia-downgrade-compat@v2.5.1(downgrade.jl, includes the #51[sources]-strip) on Julia 1.12 at minimum versions, faithfully reproducing the CI downgrade job:test/AD(where Mooncake is a real[deps]entry fed to Resolver.jl):Successfully resolved minimal versions— Mooncake pinned to exactly=0.5.36, alongsideLinearSolve 3.87.1,Enzyme 0.13.35,JET 0.11.0,ForwardDiff 0.10.38. NoUnsatisfiable..(modedeps, merged extras+targets.test resolution, matchingDowngrade.yml):Successfully resolved minimal versions for . (with extras). Mooncake stays a weakdep here (not in root[extras]/[targets].test), so it is not promoted/resolved on the root job; the Mooncake-carrying resolution istest/AD, verified above.So the floor-raise alone does clear the Mooncake downgrade resolution (
resolves_at_min = true); the Resolver-capacity wall does not persist for this repo after the bump.Please ignore until reviewed by @ChrisRackauckas.
🤖 Generated with Claude Code