Skip to content
This repository was archived by the owner on May 15, 2025. It is now read-only.

Commit 2504f70

Browse files
Require v1.9 and drop backwards compat
1 parent 9591801 commit 2504f70

File tree

4 files changed

+7
-15
lines changed

4 files changed

+7
-15
lines changed

.github/workflows/CI.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ jobs:
1515
- Core
1616
version:
1717
- '1'
18-
- '1.6'
1918
steps:
2019
- uses: actions/checkout@v4
2120
- uses: julia-actions/setup-julia@v1

.github/workflows/Downstream.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
julia-version: [1,1.6]
17+
julia-version: [1]
1818
os: [ubuntu-latest]
1919
package:
2020
- {user: SciML, repo: ModelingToolkit.jl, group: All}

Project.toml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
name = "SimpleNonlinearSolve"
22
uuid = "727e6d20-b764-4bd8-a329-72de5adea6c7"
33
authors = ["SciML"]
4-
version = "0.1.24"
4+
version = "0.1.25"
55

66
[deps]
77
ArrayInterface = "4fba245c-0d91-5ea0-9b3e-6abc04ee57a9"
88
DiffEqBase = "2b5f629d-d688-5b77-993f-72d75c75574e"
99
FiniteDiff = "6a86dc24-6348-571c-b903-95158fe2bd41"
1010
ForwardDiff = "f6369f11-7733-5829-9624-2563aa707210"
1111
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
12-
PackageExtensionCompat = "65ce6f38-6b18-4e1d-a461-8949797d7930"
1312
PrecompileTools = "aea7be01-6a6a-4083-8856-8a6e6704d82a"
1413
Reexport = "189a3867-3050-52da-a836-e630ba90ab69"
1514
SciMLBase = "0bca4576-84f4-4d90-8ffe-ffa030f20462"
@@ -22,18 +21,17 @@ NNlib = "872c559c-99b0-510c-b3b7-b6c96a88d5cd"
2221
SimpleNonlinearSolveNNlibExt = "NNlib"
2322

2423
[compat]
25-
ArrayInterface = "6, 7"
24+
ArrayInterface = "7"
2625
DiffEqBase = "6.126"
2726
FiniteDiff = "2"
2827
ForwardDiff = "0.10.3"
29-
LinearAlgebra = "1.6"
28+
LinearAlgebra = "1.9"
3029
NNlib = "0.8, 0.9"
31-
PackageExtensionCompat = "1"
3230
PrecompileTools = "1"
33-
Reexport = "0.2, 1"
34-
SciMLBase = "1.73, 2"
31+
Reexport = "1"
32+
SciMLBase = "2"
3533
StaticArraysCore = "1.4"
36-
julia = "1.6"
34+
julia = "1.9"
3735

3836
[extras]
3937
NNlib = "872c559c-99b0-510c-b3b7-b6c96a88d5cd"

src/SimpleNonlinearSolve.jl

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,6 @@ using DiffEqBase
1010

1111
@reexport using SciMLBase
1212

13-
using PackageExtensionCompat
14-
function __init__()
15-
@require_extensions
16-
end
17-
1813
const NNlibExtLoaded = Ref{Bool}(false)
1914

2015
abstract type AbstractSimpleNonlinearSolveAlgorithm <: SciMLBase.AbstractNonlinearAlgorithm end

0 commit comments

Comments
 (0)