Skip to content

Commit f140b52

Browse files
committed
Update Project.toml
Use Julia 1.10 and clang 0.14 Update to use SuiteSparse 7
1 parent 9397ae9 commit f140b52

File tree

5 files changed

+1837
-3369
lines changed

5 files changed

+1837
-3369
lines changed

Project.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "Sundials"
22
uuid = "c3572dad-4567-51f8-b174-8c6c989267f4"
33
authors = ["Chris Rackauckas <accounts@chrisrackauckas.com>"]
4-
version = "4.19.4"
4+
version = "4.20"
55

66
[deps]
77
CEnum = "fa961155-64e5-5f13-b03f-caf6b980ea82"
@@ -23,8 +23,8 @@ DiffEqBase = "6.122"
2323
Reexport = "0.2, 1.0"
2424
SciMLBase = "1.92"
2525
PrecompileTools = "1"
26-
Sundials_jll = "5.2"
27-
julia = "1.6"
26+
Sundials_jll = "6"
27+
julia = "1.10"
2828

2929
[extras]
3030
AlgebraicMultigrid = "2169fc97-5a83-5252-b627-83903c6c433c"

gen/Project.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
[deps]
22
Clang = "40e3b903-d033-50b4-a0cc-940c62c95e31"
33
MLStyle = "d8e11817-5142-5d16-987a-aa16d5891078"
4+
Sundials = "c3572dad-4567-51f8-b174-8c6c989267f4"
45
Sundials_jll = "fb77eaff-e24c-56d4-86b1-d163f2edb164"
56

67
[compat]
7-
Clang = "0.14.0"
8+
Clang = "0.17"

gen/generate.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -233,15 +233,15 @@ include_dir = joinpath(Sundials_jll.artifact_dir, "include") |> normpath
233233

234234
artifact_toml = joinpath(dirname(pathof(Sundials_jll.SuiteSparse_jll)), "..",
235235
"StdlibArtifacts.toml")
236-
suitespase_dir = Pkg.Artifacts.ensure_artifact_installed("SuiteSparse", artifact_toml)
237-
suitespase_include_sir = joinpath(suitespase_dir, "include")
236+
suitesparse_dir = Pkg.Artifacts.ensure_artifact_installed("SuiteSparse", artifact_toml)
237+
suitesparse_include_sir = joinpath(suitesparse_dir, "include")
238238

239239
# wrapper generator options
240240
options = load_options(joinpath(@__DIR__, "generate.toml"))
241241

242242
# add compiler flags, e.g. "-DXXXXXXXXX"
243243
args = get_default_args()
244-
push!(args, "-I$include_dir", "-isystem$suitespase_include_sir")
244+
push!(args, "-I$include_dir", "-isystem$suitesparse_include_sir")
245245

246246
library_names = Dict(raw"sundials[\\/].+" => "libsundials_sundials",
247247
raw"sunnonlinsol[\\/].+" => "libsundials_sunnonlinsol",

0 commit comments

Comments
 (0)