Skip to content

Commit aa37310

Browse files
authored
bump compat DSP (#946)
* bump compat DSP * fix deprecation * bump version
1 parent 4194f04 commit aa37310

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/ControlSystemsBase/Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name = "ControlSystemsBase"
22
uuid = "aaaaaaaa-a6ca-5380-bf3e-84a91bcd477e"
33
authors = ["Dept. Automatic Control, Lund University"]
44
repo = "https://github.com/JuliaControl/ControlSystems.jl.git"
5-
version = "1.11.2"
5+
version = "1.11.3"
66

77
[deps]
88
DSP = "717857b8-e6f2-59f4-9121-6e50c889abd2"
@@ -32,7 +32,7 @@ ControlSystemsBaseImplicitDifferentiationExt = ["ImplicitDifferentiation", "Comp
3232

3333
[compat]
3434
Aqua = "0.5"
35-
DSP = "0.6.1, 0.7"
35+
DSP = "0.6.1, 0.7, 0.8"
3636
ForwardDiff = "0.10"
3737
ImplicitDifferentiation = "0.4.2"
3838
IterTools = "1.0"

lib/ControlSystemsBase/test/test_dsp.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
Gds = DSP.SecondOrderSections(Gd)
1010

1111
u = randn(100)
12-
uf = DSP.filt(Gds, u, zeros(2,2))
12+
uf = DSP.filt(DSP.DF2TFilter(Gds, zeros(2,2)), u)
1313
uls = lsim(Gd, u').y'
1414
@test uf[1:end-1] uls[2:end]
1515

0 commit comments

Comments
 (0)