Floor OrdinaryDiffEqDifferentiation at 3.3 - #4085
Merged
Merged
Conversation
Puts the 3.2 line, including the 3.2.3 release that downstream packages have been pinning around, permanently out of the resolvable range. Patch-bumps the 13 sublibraries whose compat changed so the new floor can be released. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
This was referenced Jul 31, 2026
ChrisRackauckas
added a commit
that referenced
this pull request
Jul 31, 2026
Four sublibraries were already ahead of the registry with a release pending when #4085 patch-bumped them, leaving a hole. AutoMerge rejects those: Does not meet sequential version number guideline: version 2.6.1 skips over 2.6.0 Reverts those four to their pending versions, which already carry the new OrdinaryDiffEqDifferentiation floor. The other nine were at registry+1 and are unaffected. Co-authored-by: Claude Opus 5 (1M context) <noreply@anthropic.com>
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.
Raises the
OrdinaryDiffEqDifferentiationlower bound from"3"(and"3.2.1"in Rosenbrock) to"3.3"across the monorepo, so the entire 3.2 line — including 3.2.3 — is no longer resolvable.Why
Downstream packages have been carrying their own pins to route around 3.2.3.
SciML/MinimallyDisruptiveCurves.jlhas hadtogether with an
[extras]entry declaring a package it never loads, purely so[compat]could constrain a transitive dependency. CompatHelper then repeatedly proposes widening that pin (#66), which would silently re-admit exactly the version it excludes.Constraining this here instead means:
OrdinaryDiffEqDifferentiation, not in each consumer;OrdinaryDiffEq;There is no 3.2.4, so nothing was ever patched into the 3.2 line — moving to 3.3 is the only way past it.
Scope
17
Project.tomlfiles: 13 sublibraries (patch-bumped so the floor is releasable), plusdocs/and threetest/qa/environments.[deps]UUID lines are untouched; only[compat]bounds and the 13 versions changed.Caveat worth reviewing
I could not reproduce the 3.2.3 precompilation failure in isolation — 3.2.2, 3.2.3 and 3.3.0 all precompile cleanly standalone on Julia 1.11.8, and no issue or PR in this repo references it. The only record is the inline comment above. This raises the floor on the strength of that report rather than a reproduction, so it is a deliberate safety margin, not a diagnosed fix.
Note this also raises what Downgrade CI exercises for these sublibraries from 3.0.0 to 3.3.0.