Commit 99d2875
committed
Fix minimum Julia version requirement from 1.6 to 1.10
The current minimum version bound of Julia >= 1.6 is incorrect.
## Evidence
1. **DifferentialEquations.jl** requires Julia >= 1.10 (as of v8.0.0, Oct 2025)
2. **ModelingToolkit.jl v9+** requires Julia >= 1.9 (as of v9.0.0, Feb 2024)
3. The current diffeqr code uses `complete(odesys, split=false)` which requires
ModelingToolkit.jl v9.0.0+ (introduced in PR #2436)
## Breaking Changes Timeline
- **Feb 2024**: ModelingToolkit v9.0.0 required systems to be `complete`d
before creating problems, requiring Julia 1.9+
- **Oct 2025**: DifferentialEquations.jl v8.0.0 bumped to Julia 1.10+
## Impact
Users with Julia 1.6-1.9 will encounter errors when trying to use diffeqr
with current versions of DifferentialEquations.jl. This change correctly
documents the actual minimum version required.
Co-Authored-By: Claude Sonnet 4.5 <[email protected]>1 parent 54806d0 commit 99d2875
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
14 | 14 | | |
15 | 15 | | |
16 | 16 | | |
17 | | - | |
| 17 | + | |
18 | 18 | | |
19 | 19 | | |
20 | 20 | | |
| |||
0 commit comments