build(deps): move the SciMLBasev3, SDEv7, ODEv8#255
Merged
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #255 +/- ##
==========================================
+ Coverage 82.00% 83.41% +1.41%
==========================================
Files 15 17 +2
Lines 717 971 +254
==========================================
+ Hits 588 810 +222
- Misses 129 161 +32 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Removed monthly downloads badge from README.
Datseris
approved these changes
May 13, 2026
Member
|
Thanks Orjan, will merge once test pass |
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
Brings DynamicalSystemsBase onto the SciMLBase v3 / OrdinaryDiffEq v7 wave: SciMLBase 3, OrdinaryDiffEqTsit5 2, StochasticDiffEq 7, Roots 3, ModelingToolkit 11 (tests), Julia 1.10.
Source changes
u_modified!->derivative_discontinuity!(SciMLBase v3 rename) insrc/core_systems/continuous_time_ode.jl,src/derived_systems/parallel_systems.jl,ext/StochasticSystemsBase.jl,ext/src/CoupledSDEs.jlSciMLBase.DEProblem->SciMLBase.AbstractDEProbleminsrc/core/dynamicalsystem_interface.jl(v3 drops theDEProblemalias;AbstractDEProblemworks on both v2 and v3)Compat
OrdinaryDiffEqTsit5 = "2"SciMLBase = "3"Roots = "2, 3"StochasticDiffEq = "7"julia = "1.10"(required by SciMLBase v3)test/Project.toml:ModelingToolkit = "10, 11"Test migrations (downstream API changes, not ours)
verbose = false->verbose = None()intest/continuous.jl,test/stochastic.jl. OrdinaryDiffEq v7 rejectsverbose::Boolat the API boundary.ODEProblem(sys, [1.0, 1.0], tspan)/SDEProblem(sys, [1.0, 1.0], tspan)-> symbolic-map u0 intest/jacobian.jl. MTK 11 requires the operating point as a symbolic map.test/mtk_integration.jlrewritten with the functionalSystem/@mtkcompileform (the@mtkmodelDSL lives inSciCompDSL.jlnow, separate from MTK).Test results
1536 passed, 0 failed, 0 errored.Downstream impact
DynamicalSystemsBase forwards the
diffeqnamed tuple through to OrdinaryDiffEq / StochasticDiffEq. Users passing v6-era kwargs through this surface will now hitArgumentErrors from the upstream packages:verbose = true/false-> useverbose = None()/Standard()/DEVerbosity(...)autodiff = true/false-> useAutoForwardDiff()/AutoFiniteDiff()etc. from ADTypesalias_u0 = true-> usealias = ODEAliasSpecifier(alias_u0 = true)gamma,beta1,qmin, ...) -> usecontroller = PIController(...)/PIDController(...)See the OrdinaryDiffEq v7 NEWS for the full list.