Skip to content

Commit 20366a7

Browse files
authored
Merge pull request #106 from SciML/myb/dep
Remove OrdinaryDiffEq from deps
2 parents 4c6d28e + 2fe5139 commit 20366a7

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

Project.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,19 @@ version = "1.5.0"
77
IfElse = "615f187c-cbe4-4ef1-ba3b-2fcf58d6d173"
88
ModelingToolkit = "961ee093-0014-501f-94e3-6117800e7a78"
99
OffsetArrays = "6fe1bfb0-de20-5000-8ca7-80f57d26f881"
10-
OrdinaryDiffEq = "1dea7af3-3e70-54e6-95c3-0bf5283fa5ed"
1110
Symbolics = "0c5d862f-8b57-4792-8d23-62f2024744c7"
1211

1312
[compat]
1413
IfElse = "0.1"
1514
ModelingToolkit = "8"
1615
OffsetArrays = "1"
17-
OrdinaryDiffEq = "5.56, 6"
1816
Symbolics = "0.1, 1, 2, 3, 4"
1917
julia = "1.6"
2018

2119
[extras]
20+
OrdinaryDiffEq = "1dea7af3-3e70-54e6-95c3-0bf5283fa5ed"
2221
SafeTestsets = "1bc83da4-3b8d-516f-aca4-4fe02f6d838f"
2322
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
2423

2524
[targets]
26-
test = ["SafeTestsets", "Test"]
25+
test = ["OrdinaryDiffEq", "SafeTestsets", "Test"]

src/Blocks/Blocks.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
The module `Blocks` contains common input-output components, referred to as blocks.
33
"""
44
module Blocks
5-
using ModelingToolkit, Symbolics, OrdinaryDiffEq
5+
using ModelingToolkit, Symbolics
66
using IfElse: ifelse
77

88
@parameters t

src/Electrical/Electrical.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This library contains electrical components to build up analog circuits.
44
"""
55
module Electrical
66

7-
using ModelingToolkit, Symbolics, IfElse, OrdinaryDiffEq
7+
using ModelingToolkit, Symbolics, IfElse
88
using OffsetArrays
99

1010
@parameters t

src/Mechanical/Rotational/Rotational.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Library to model 1-dimensional, rotational mechanical systems
33
"""
44
module Rotational
55

6-
using ModelingToolkit, Symbolics, IfElse, OrdinaryDiffEq
6+
using ModelingToolkit, Symbolics, IfElse
77
using ...Blocks: RealInput, RealOutput
88

99
@parameters t

0 commit comments

Comments
 (0)