Skip to content

Commit 94d57a0

Browse files
committed
remove term interface, update compat
1 parent acdfca1 commit 94d57a0

File tree

4 files changed

+6
-8
lines changed

4 files changed

+6
-8
lines changed

Project.toml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ RuntimeGeneratedFunctions = "7e49a35a-f44a-4d26-94aa-eba1b4ca6b47"
2323
Setfield = "efcf1570-3423-57d1-acb7-fd33fddbac46"
2424
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
2525
Symbolics = "0c5d862f-8b57-4792-8d23-62f2024744c7"
26-
TermInterface = "8ea1fca8-c5ef-4a55-8b96-4e9afe9c9a3c"
2726
Unitful = "1986cc42-f94f-5a68-af5c-568840ba703d"
2827

2928
[weakdeps]
@@ -38,8 +37,8 @@ CatalystStructuralIdentifiabilityExtension = "StructuralIdentifiability"
3837

3938
[compat]
4039
BifurcationKit = "0.3"
41-
DataStructures = "0.18"
4240
Combinatorics = "1.0.2"
41+
DataStructures = "0.18"
4342
DiffEqBase = "6.83.0"
4443
DocStringExtensions = "0.8, 0.9"
4544
DynamicPolynomials = "0.5"
@@ -50,15 +49,14 @@ JumpProcesses = "9.3.2"
5049
LaTeXStrings = "1.3.0"
5150
Latexify = "0.14, 0.15, 0.16"
5251
MacroTools = "0.5.5"
53-
ModelingToolkit = "9.11.0"
52+
ModelingToolkit = "9.16.0"
5453
Parameters = "0.12"
5554
Reexport = "0.2, 1.0"
5655
Requires = "1.0"
5756
RuntimeGeneratedFunctions = "0.5.12"
5857
Setfield = "1"
5958
StructuralIdentifiability = "0.5.8"
60-
Symbolics = "5.27"
61-
TermInterface = "0.4.1"
59+
Symbolics = "5.30.1"
6260
Unitful = "1.12.4"
6361
julia = "1.10"
6462

ext/CatalystHomotopyContinuationExtension.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import ModelingToolkit as MT
77
import HomotopyContinuation as HC
88
import Setfield: @set
99
import Symbolics: unwrap, wrap, Rewriters, symtype, issym
10-
using TermInterface: iscall
10+
using Symbolics: iscall
1111

1212
# Creates and exports hc_steady_states function.
1313
include("CatalystHomotopyContinuationExtension/homotopy_continuation_extension.jl")

src/Catalyst.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ using RuntimeGeneratedFunctions
2323
RuntimeGeneratedFunctions.init(@__MODULE__)
2424

2525
import Symbolics: BasicSymbolic
26-
using TermInterface: iscall
26+
using Symbolics: iscall
2727
using ModelingToolkit: Symbolic, value, get_unknowns, get_ps, get_iv, get_systems,
2828
get_eqs, get_defaults, toparam, get_var_to_name, get_observed,
2929
getvar

test/dsl/dsl_basic_model_construction.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using DiffEqBase, Catalyst, Random, Test
55
using ModelingToolkit: operation, get_unknowns, get_ps, get_eqs, get_systems,
66
get_iv, nameof
7-
using TermInterface: iscall
7+
using Symbolics: iscall
88

99
# Sets stable rng number.
1010
using StableRNGs

0 commit comments

Comments
 (0)