Skip to content

Commit

Permalink
Merge pull request #509 from mohamed82008/mt/1.3.1
Browse files Browse the repository at this point in the history
Patch Release : Compat Bounds on DataInterpolations
  • Loading branch information
AlCap23 authored May 24, 2024
2 parents 368e9b6 + 13171c2 commit a59d538
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "DataDrivenDiffEq"
uuid = "2445eb08-9709-466a-b3fc-47e12bd697a2"
authors = ["Julius Martensen <[email protected]>"]
version = "1.3.0"
version = "1.3.1"

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

[compat]
CommonSolve = "0.2"
DataInterpolations = "4"
DataInterpolations = "4, 5"
DiffEqBase = "6"
DocStringExtensions = "0.7, 0.8, 0.9"
MLUtils = "0.3, 0.4"
Expand Down
2 changes: 1 addition & 1 deletion test/basis/basis.jl
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ end

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

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

0 comments on commit a59d538

Please sign in to comment.