Bump compat for OrdinaryDiffEq v7 / SciMLBase v3 ecosystem#165
Merged
ChrisRackauckas merged 1 commit intoSciML:masterfrom Apr 27, 2026
Merged
Conversation
- Bump OrdinaryDiffEq compat from "6.98.0" to "6.98.0, 7" - Bump RecursiveArrayTools compat to "3.29.0, 4" for RAT v4 - Add OrdinaryDiffEqSDIRK "1.1.0, 2" as test dep (TRBDF2 no longer in default OrdinaryDiffEq v7 set) - Add SciMLBase "2, 3" as explicit test dep (needed in v7 where it is no longer re-exported by name) - Add `using OrdinaryDiffEqSDIRK, SciMLBase` to core_nesteddual.jl and core_odes.jl - Fix gpu_all.jl: OrdinaryDiffEq.DiffEqBase.anyeltypedual → SciMLBase.anyeltypedual - Fix core_nesteddual.jl: `for s in sol` (RAT v4 iterates scalars) → `sol.retcode` check - Update test/GPU/Project.toml with OrdinaryDiffEqSDIRK v2 and SciMLBase v3 Co-Authored-By: Chris Rackauckas <accounts@chrisrackauckas.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.
Summary
Bumps compatibility for the OrdinaryDiffEq v7 / SciMLBase v3 ecosystem (refs SciML/OrdinaryDiffEq.jl#3562, SciML/OrdinaryDiffEq.jl#3565, NEWS.md).
Project.toml changes:
OrdinaryDiffEq:"6.98.0"→"6.98.0, 7"RecursiveArrayTools:"3.29.0"���"3.29.0, 4"(RAT v4 ships with ODE v7)OrdinaryDiffEqSDIRK = "1.1.0, 2"as test dep —TRBDF2is no longer in the defaultOrdinaryDiffEqv7 umbrella (moved toOrdinaryDiffEqSDIRK)SciMLBase = "2, 3"as explicit test dep —SciMLBasemust be imported directly in v7 (no longer name-re-exported byOrdinaryDiffEq)Test migration:
core_odes.jl,core_nesteddual.jl: addusing OrdinaryDiffEqSDIRK, SciMLBasecore_nesteddual.jl: fixfor s in sol(broken under RAT v4 which iterates scalars) →sol.retcode != ReturnCode.Successgpu_all.jl:OrdinaryDiffEq.DiffEqBase.anyeltypedual→SciMLBase.anyeltypedual(DiffEqBase is now a sublibrary, not a submodule of OrdinaryDiffEq); addusing OrdinaryDiffEqSDIRK, SciMLBasetest/GPU/Project.toml: addOrdinaryDiffEqSDIRK = "2"andSciMLBase = "2, 3"All tests pass locally against OrdinaryDiffEq v7.0.0, SciMLBase v3.6.0, RecursiveArrayTools v4.2.0, OrdinaryDiffEqSDIRK v2.0.0.
🤖 Generated with Claude Code