Fix minimum version bounds and NullParameters bug #29
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
NullParametersreference inbuild_rhs.jlandbuild_rhs_ss.jl-NullParametersis not exported from DiffEqBase and must be qualified asDiffEqBase.NullParameters()Details
DiffEqBase Minimum Version
When attempting to resolve with the minimum DiffEqBase version (6.0), the package resolver fails because Catalyst 15 transitively requires DiffEqBase >= 6.165. This PR updates the bound to accurately reflect this constraint.
NullParameters Bug
The code was using an unqualified
NullParameters()in default function arguments:This causes an
UndefVarErrorat runtime becauseNullParametersis not exported fromDiffEqBase. The fix qualifies it asDiffEqBase.NullParameters().Test Plan
Note on Julia 1.12 Compatibility
Tests on Julia 1.12 currently require MacroTools from master due to a MethodList API change in Julia 1.12. The fix was merged to MacroTools in PR #217 but has not yet been released. Once MacroTools 0.5.17+ is released, CI should pass on Julia 1.12.
cc @ChrisRackauckas
🤖 Generated with Claude Code