Drop deprecated StochasticDelayDiffEq dependency#4493
Merged
ChrisRackauckas merged 1 commit intoApr 27, 2026
Merged
Conversation
StochasticDelayDiffEq.jl is deprecated and will not receive a v7-compatible release. DelayDiffEq already supports SDDE problems natively. Remove SDDE from [compat], [extras], and [targets] in both Project.toml and lib/ModelingToolkitBase/Project.toml, and drop the dead commented-out `using StochasticDelayDiffEq` line from the initialization test. All SDDEProblem / SDDEFunction usage continues to work via SciMLBase and DelayDiffEq (already listed as deps/test-deps). This unblocks MTK from resolving the full v7 ecosystem. 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.
Motivation
StochasticDelayDiffEq.jlis deprecated and will not receive a v7-compatible release. From OrdinaryDiffEq.jl NEWS.md:Keeping SDDE as a dependency forces MTK to cap itself out of the v7 ecosystem. This PR removes it, unblocking downstream work (BaseModelica#120, MTKStdlib#445).
Changes
Project.toml(top-level)Before:
After: all three entries removed.
DelayDiffEqandStochasticDiffEqwere already present.lib/ModelingToolkitBase/Project.tomlSame removal —
StochasticDelayDiffEqdropped from[compat],[extras], and[targets].lib/ModelingToolkitBase/test/initializationsystem.jlBefore:
After:
using StochasticDiffEq, DelayDiffEq, JumpProcessesThe commented-out import was already dead code —
DelayDiffEq(already on line 2) covers all SDDE solver needs.SDDEProblemandSDDEFunctionreferences elsewhere in the codebase are unaffected — they come fromSciMLBase, notStochasticDelayDiffEq.Local verification
Re-resolve of
lib/ModelingToolkitBasepicks up the full v7 line:No
StochasticDelayDiffEqentry in the resolved manifest.Test plan