Skip to content

Commit 3c0480a

Browse files
authored
Merge pull request #1247 from SciML/s/symbolics-compat
upper bound Symbolics to 3.2.x
2 parents f8a7f3b + 58febf1 commit 3c0480a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "ModelingToolkit"
22
uuid = "961ee093-0014-501f-94e3-6117800e7a78"
33
authors = ["Chris Rackauckas <[email protected]>"]
4-
version = "6.4.8"
4+
version = "6.4.9"
55

66
[deps]
77
AbstractTrees = "1520ce14-60c1-5f80-bbc7-55ef81b5835c"
@@ -73,7 +73,7 @@ Setfield = "0.7"
7373
SpecialFunctions = "0.7, 0.8, 0.9, 0.10, 1.0"
7474
StaticArrays = "0.10, 0.11, 0.12, 1.0"
7575
SymbolicUtils = "0.13.4, 0.15"
76-
Symbolics = "3.1"
76+
Symbolics = "~3.2.0"
7777
UnPack = "0.1, 1.0"
7878
Unitful = "1.1"
7979
julia = "1.2"

test/odesystem.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -480,7 +480,7 @@ using Symbolics: unwrap, wrap
480480
function foo(a::Num, ms::AbstractVector)
481481
a = unwrap(a)
482482
ms = map(unwrap, ms)
483-
wrap(term(foo, a, MakeArray(ms, SArray)))
483+
wrap(term(foo, a, term(SVector, ms...)))
484484
end
485485
foo(a, ms::AbstractVector) = a + sum(ms)
486486
@variables t x(t) ms[1:3](t)

0 commit comments

Comments
 (0)