From c06fe770384922112526999b68bf8e60bcc87013 Mon Sep 17 00:00:00 2001 From: Joshua Lampert Date: Sun, 23 Mar 2025 16:02:59 +0100 Subject: [PATCH 1/3] hotfix for failing tests --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index ab55a20e..d8fa3e90 100644 --- a/Project.toml +++ b/Project.toml @@ -26,7 +26,7 @@ MuladdMacro = "0.2.4" OrdinaryDiffEqCore = "1.16" RecipesBase = "1.3.4" Reexport = "1.2.2" -SciMLBase = "2.68" +SciMLBase = "2.68 - 2.77" SimpleUnPack = "1" SparseArrays = "1" StaticArrays = "1.9.7" From bb26629d8814f2b1010c0e2d0c0ec8fa36c2df32 Mon Sep 17 00:00:00 2001 From: Joshua Lampert Date: Sun, 23 Mar 2025 16:11:17 +0100 Subject: [PATCH 2/3] ignore SciMLBase in downgrade --- .github/workflows/Downgrade.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/Downgrade.yml b/.github/workflows/Downgrade.yml index d5422872..6c9e7daa 100644 --- a/.github/workflows/Downgrade.yml +++ b/.github/workflows/Downgrade.yml @@ -38,7 +38,7 @@ jobs: - uses: julia-actions/cache@v2 - uses: julia-actions/julia-downgrade-compat@v1 with: - skip: LinearAlgebra,SparseArrays,Statistics,Test + skip: LinearAlgebra,SparseArrays,Statistics,Test,SciMLBase projects: ., test - uses: julia-actions/julia-buildpkg@v1 env: From 89fad8904745c52f2baf0d6a0274a48397e42bf9 Mon Sep 17 00:00:00 2001 From: Joshua Lampert Date: Sun, 23 Mar 2025 17:54:19 +0100 Subject: [PATCH 3/3] add compat for SciMLOperators this is needed to prevent the method overwriting --- .github/workflows/Downgrade.yml | 2 +- Project.toml | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/Downgrade.yml b/.github/workflows/Downgrade.yml index 6c9e7daa..8e5cb87c 100644 --- a/.github/workflows/Downgrade.yml +++ b/.github/workflows/Downgrade.yml @@ -38,7 +38,7 @@ jobs: - uses: julia-actions/cache@v2 - uses: julia-actions/julia-downgrade-compat@v1 with: - skip: LinearAlgebra,SparseArrays,Statistics,Test,SciMLBase + skip: LinearAlgebra,SparseArrays,Statistics,Test,SciMLBase,SciMLOperators projects: ., test - uses: julia-actions/julia-buildpkg@v1 env: diff --git a/Project.toml b/Project.toml index d8fa3e90..35c63113 100644 --- a/Project.toml +++ b/Project.toml @@ -12,6 +12,7 @@ OrdinaryDiffEqCore = "bbf590c4-e513-4bbe-9b18-05decba2e5d8" RecipesBase = "3cdcf5f2-1ef4-517c-9805-6587b60abb01" Reexport = "189a3867-3050-52da-a836-e630ba90ab69" SciMLBase = "0bca4576-84f4-4d90-8ffe-ffa030f20462" +SciMLOperators = "c0aeaf25-5076-4817-a8d5-81caf7dfa961" SimpleUnPack = "ce78b400-467f-4804-87d8-8f486da07d0a" SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf" StaticArrays = "90137ffa-7385-5640-81b9-e52037218182" @@ -27,6 +28,7 @@ OrdinaryDiffEqCore = "1.16" RecipesBase = "1.3.4" Reexport = "1.2.2" SciMLBase = "2.68 - 2.77" +SciMLOperators = "0.3 - 0.3.12" SimpleUnPack = "1" SparseArrays = "1" StaticArrays = "1.9.7"