Skip to content

Commit a59d538

Browse files
authored
Merge pull request #509 from mohamed82008/mt/1.3.1
Patch Release : Compat Bounds on DataInterpolations
2 parents 368e9b6 + 13171c2 commit a59d538

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 = "DataDrivenDiffEq"
22
uuid = "2445eb08-9709-466a-b3fc-47e12bd697a2"
33
authors = ["Julius Martensen <[email protected]>"]
4-
version = "1.3.0"
4+
version = "1.3.1"
55

66
[deps]
77
CommonSolve = "38540f10-b2f7-11e9-35d8-d573e4eb0ff2"
@@ -25,7 +25,7 @@ Symbolics = "0c5d862f-8b57-4792-8d23-62f2024744c7"
2525

2626
[compat]
2727
CommonSolve = "0.2"
28-
DataInterpolations = "4"
28+
DataInterpolations = "4, 5"
2929
DiffEqBase = "6"
3030
DocStringExtensions = "0.7, 0.8, 0.9"
3131
MLUtils = "0.3, 0.4"

test/basis/basis.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ end
114114

115115
@test size(basis) == (6,)
116116
@test size(basis_2) == (5,)
117-
@test basis_2([1.0; 2.0; π], [0.0; 1.0]) [1.0; -1.0; π; 2.0; 1.0]
117+
@test basis_2([1.0; 2.0; π], [0.0; 1.0]) [1.0; -1.0; 2.0; π; 1.0]
118118
@test basis([1.0; 2.0; π], [0.0; 1.0]) [1.0; 2.0; π; -1.0; 5 * π + 2.0; 1.0]
119119

120120
@test size(basis) == size(basis_2) .+ (1,)

0 commit comments

Comments
 (0)