From a05389097e4b8597b8cfd9a7584c59703ae95e36 Mon Sep 17 00:00:00 2001 From: ChrisRackauckas-Claude Date: Sat, 11 Jul 2026 12:59:29 -0400 Subject: [PATCH] Update SciMLTesting QA docs checks Co-Authored-By: Chris Rackauckas --- Project.toml | 2 +- src/algorithms.jl | 6 ++++++ test/qa/Project.toml | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/Project.toml b/Project.toml index 080b3db..d31ef81 100644 --- a/Project.toml +++ b/Project.toml @@ -28,7 +28,7 @@ Reexport = "1.2.2" SafeTestsets = "0.0.1, 0.1" SciMLBase = "3.1" SciMLLogging = "1.10.1, 2" -SciMLTesting = "1" +SciMLTesting = "2.1" SymbolicIndexingInterface = "0.3" Test = "1" julia = "1.10" diff --git a/src/algorithms.jl b/src/algorithms.jl index c8420fd..6fd95e8 100644 --- a/src/algorithms.jl +++ b/src/algorithms.jl @@ -1,5 +1,11 @@ # ODEInterface.jl Algorithms +""" + ODEInterfaceAlgorithm + +Abstract supertype for ODEInterfaceDiffEq algorithms that wrap the Hairer and +ODEInterface solvers exposed through the SciML common solve interface. +""" abstract type ODEInterfaceAlgorithm <: SciMLBase.AbstractODEAlgorithm end abstract type ODEInterfaceImplicitAlgorithm <: ODEInterfaceAlgorithm end abstract type ODEInterfaceExplicitAlgorithm <: ODEInterfaceAlgorithm end diff --git a/test/qa/Project.toml b/test/qa/Project.toml index 4123806..6861081 100644 --- a/test/qa/Project.toml +++ b/test/qa/Project.toml @@ -13,6 +13,6 @@ ODEInterfaceDiffEq = { path = "../.." } Aqua = "0.8" JET = "0.9,0.10,0.11" SafeTestsets = "0.0.1, 0.1" -SciMLTesting = "1.7" +SciMLTesting = "2.1" Test = "1" julia = "1.10"