Skip to content

Commit 26391e7

Browse files
authored
fix #1020 (#1021)
* fix #1020 * relax
1 parent 5d9a416 commit 26391e7

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

Project.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,12 @@ name = "ControlSystems"
22
uuid = "a6e380b2-a6ca-5380-bf3e-84a91bcd477e"
33
authors = ["Dept. Automatic Control, Lund University"]
44
repo = "https://github.com/JuliaControl/ControlSystems.jl.git"
5-
version = "1.15.0"
5+
version = "1.15.1"
66

77
[deps]
88
ControlSystemsBase = "aaaaaaaa-a6ca-5380-bf3e-84a91bcd477e"
99
DelayDiffEq = "bcd4f6db-9728-5f36-b5f7-82caef46ccdb"
10+
DiffEqBase = "2b5f629d-d688-5b77-993f-72d75c75574e"
1011
DiffEqCallbacks = "459566f4-90b8-5000-8ac3-15dfb0a30def"
1112
ForwardDiff = "f6369f11-7733-5829-9624-2563aa707210"
1213
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
@@ -22,6 +23,7 @@ StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
2223
Aqua = "0.5"
2324
ControlSystemsBase = "1.3"
2425
DelayDiffEq = "5.31"
26+
DiffEqBase = "6"
2527
DiffEqCallbacks = "2.16, 3, 4"
2628
ForwardDiff = "0.10, 1"
2729
OrdinaryDiffEq = "6.60"

src/ControlSystems.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ module ControlSystems
33
using Reexport
44
@reexport using ControlSystemsBase
55
using ControlSystemsBase: issiso, ninputs, noutputs, nstates, numeric_type
6+
import DiffEqBase
67

78

89
using LinearAlgebra

src/timeresp.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import OrdinaryDiffEq: ODEProblem, Tsit5, DiffEqBase, solve, BS3
1+
import OrdinaryDiffEq: ODEProblem, Tsit5, solve, BS3
22
import ControlSystemsBase: lsim, step, impulse, HammersteinWienerSystem, DelayLtiSystem, PartitionedStateSpace, SimResult
33
import DelayDiffEq: MethodOfSteps
44
# Function for DifferentialEquations lsim

0 commit comments

Comments
 (0)