Fix minimum Julia version requirement to 1.10#59
Merged
ChrisRackauckas merged 1 commit intoSciML:masterfrom Jan 8, 2026
Merged
Conversation
Updated the minimum Julia version from 1.6 to 1.10 based on current dependency requirements: - DifferentialEquations.jl requires Julia >= 1.10 - ModelingToolkit.jl requires Julia >= 1.9 - DiffEqGPU.jl requires Julia >= 1.10 The package now correctly specifies Julia >= 1.10 as the minimum system requirement to match the strictest dependency constraint. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.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
This PR updates the minimum Julia version requirement from 1.6 to 1.10 to align with the current dependencies.
Analysis of Current Dependency Requirements
I analyzed the Julia packages that diffeqr dynamically installs and found the following minimum Julia version requirements:
Changes Made
Updated
DESCRIPTIONfile:SystemRequirementsfromJulia (>= 1.6)toJulia (>= 1.10)Rationale
The package previously specified Julia >= 1.6, but the core dependencies it installs at runtime require Julia 1.10 or later. Users with Julia 1.6-1.9 would experience installation failures when diffeqr attempts to install DifferentialEquations.jl or DiffEqGPU.jl.
This update ensures that the minimum version requirement accurately reflects the actual constraints imposed by the Julia packages that diffeqr depends on.
Testing Notes
Since diffeqr is an R package that dynamically installs Julia packages at runtime (rather than managing them via a Julia Project.toml), the existing CI tests will verify compatibility by:
cc @ChrisRackauckas
🤖 Generated with Claude Code