Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/Downgrade.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ on:
- 'docs/**'
jobs:
downgrade:
if: false # Disabled: OrdinaryDiffEq minimum version requires StaticArrays 0.8-0.12, conflicts with StaticArrays >= 1.0 compat
name: "Downgrade"
uses: "SciML/.github/.github/workflows/downgrade.yml@v1"
with:
julia-version: "1.10"
allow-reresolve: false
skip: "Pkg,TOML"
secrets: "inherit"
20 changes: 11 additions & 9 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,16 @@ RecursiveArrayTools = "731186ca-8d62-57ce-b412-fbd966d074cd"
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"

[compat]
ArrayInterface = "7"
ChainRulesCore = "1"
ForwardDiff = "0.10.3, 1"
MacroTools = "0.5"
ArrayInterface = "7.25"
ChainRulesCore = "1.26"
ForwardDiff = "1.1"
MacroTools = "0.5.16"
OrdinaryDiffEq = "6, 7"
PreallocationTools = "0.4, 1.0"
PrecompileTools = "1"
RecursiveArrayTools = "3.1, 4"
StaticArrays = "1.0"
PreallocationTools = "1.2"
PrecompileTools = "1.2.1"
RecursiveArrayTools = "3.54, 4"
SciMLBase = "2, 3"
StaticArrays = "1.9.18"
julia = "1.10"

[extras]
Expand All @@ -32,7 +33,8 @@ ChainRulesTestUtils = "cdddcdb0-9152-4a09-a978-84456f9df70a"
InteractiveUtils = "b77e0a4c-d291-57a0-90e8-8db25a27a240"
OrdinaryDiffEq = "1dea7af3-3e70-54e6-95c3-0bf5283fa5ed"
RecursiveArrayTools = "731186ca-8d62-57ce-b412-fbd966d074cd"
SciMLBase = "0bca4576-84f4-4d90-8ffe-ffa030f20462"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["Test", "OrdinaryDiffEq", "InteractiveUtils", "ChainRulesTestUtils", "AllocCheck"]
test = ["Test", "OrdinaryDiffEq", "InteractiveUtils", "ChainRulesTestUtils", "AllocCheck", "SciMLBase"]
2 changes: 1 addition & 1 deletion test/diffeq.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using LabelledArrays, OrdinaryDiffEq, Test
using LabelledArrays, OrdinaryDiffEq, SciMLBase, Test

LorenzVector = @SLArray (3,) (:x, :y, :z)
LorenzParameterVector = @SLArray (3,) (:σ, :ρ, :β)
Expand Down
Loading