Downgrade: raise RecipesBase compat floor to 1.0 (incompatible with Plots 1 below)#51
Merged
ChrisRackauckas merged 2 commits intoJun 15, 2026
Conversation
…ble against Plots 1) At the downgrade minimum, RecipesBase is pinned to its floor 0.8.0 while the test dep Plots is pinned to its floor 1.0.0. Every Plots 1.x requires `RecipesBase = "1"` (Plots 1.0-1.23 -> RecipesBase 1); RecipesBase 0.8.x is only co-installable with the ancient pre-1.0 Plots 0.29.x. So RecipesBase 0.8.0 and Plots 1 have an empty intersection, giving an Unsatisfiable. RecipesBase 1.0 is the smallest floor co-installable with Plots 1. The `@recipe` API this package uses is unchanged between 0.8 and 1.0. Bumping the Plots floor cannot fix this since no Plots >= 1 supports RecipesBase 0.8. Co-Authored-By: Chris Rackauckas <accounts@chrisrackauckas.com> Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
…loor) # Conflicts: # Project.toml
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.
The MINIMUM-VERSION (downgrade) job fails. Reproduced locally on Julia 1.10 (the LTS downgrade floor); the conflict is:
Why the old floor was impossible
RecipesBaseis pinned to its floor0.8.0(compatRecipesBase = "0.8, 1.0"), and the test depPlotsis pinned to its floor1.0.0(compatPlots = "1").Plots 1.xrequiresRecipesBase = "1"(Plots 1.0-1.23 -> RecipesBase 1).RecipesBase 0.8.xis only co-installable with the pre-1.0Plots 0.29.x.RecipesBase 0.8.0andPlots 1have an empty intersection -> Unsatisfiable. Bumping the Plots floor cannot help, since noPlots >= 1supports RecipesBase 0.8.Fix
Raise the lower bound:
RecipesBase = "0.8, 1.0"->RecipesBase = "1.0". 1.0 is the smallest RecipesBase co-installable with Plots 1. The@recipeAPI this package uses is unchanged between RecipesBase 0.8 and 1.0; no upper bound lowered, no test logic touched.Resolve verification (local, Julia 1.10 LTS)
Mimicking
julia-downgrade-compat --min(all[compat]entries pinned to their lower bounds):RecipesBase = 0.8->Unsatisfiable(reproduces CI).RecipesBase = 1.0->RESOLVE SUCCEEDED(installs Plots v1.23.6, exit 0).Resolution only — the full test suite was not run locally; PR CI confirms.
Ignore until reviewed by @ChrisRackauckas.