Skip to content

Commit

Permalink
CompatHelper: bump compat for ClassicalOrthogonalPolynomials to 0.14,…
Browse files Browse the repository at this point in the history
… (keep existing compat) (#128)

* CompatHelper: bump compat for ClassicalOrthogonalPolynomials to 0.14, (keep existing compat)

* Update Project.toml

* Use floats

---------

Co-authored-by: CompatHelper Julia <[email protected]>
Co-authored-by: Sheehan Olver <[email protected]>
Co-authored-by: Daniel VandenHeuvel <[email protected]>
  • Loading branch information
4 people authored Dec 10, 2024
1 parent d15c251 commit d6ae78f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "SemiclassicalOrthogonalPolynomials"
uuid = "291c01f3-23f6-4eb6-aeb0-063a639b53f2"
authors = ["Sheehan Olver <[email protected]>"]
version = "0.5.9"
version = "0.5.10"

[deps]
ArrayLayouts = "4c555306-a7a7-4459-81d9-ec55ddd5c99a"
Expand All @@ -20,12 +20,12 @@ SpecialFunctions = "276daf66-3868-5448-9aa4-cd146d93841b"
[compat]
ArrayLayouts = "1"
BandedMatrices = "0.17, 1"
ClassicalOrthogonalPolynomials = "0.13"
ClassicalOrthogonalPolynomials = "0.13, 0.14"
ContinuumArrays = "0.18"
FillArrays = "1"
HypergeometricFunctions = "0.3.4"
InfiniteArrays = "0.14"
InfiniteLinearAlgebra = "0.8"
InfiniteArrays = "0.14, 0.15"
InfiniteLinearAlgebra = "0.8, 0.9"
LazyArrays = "2"
QuasiArrays = "0.11"
SpecialFunctions = "1.0, 2"
Expand Down
2 changes: 1 addition & 1 deletion test/test_neg1b.jl
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ end
P = SemiclassicalJacobi.(t, -1//2:13//2, -1:6, -1//2:13//2)
@test P isa SemiclassicalOrthogonalPolynomials.SemiclassicalJacobiFamily
for (i, p) in enumerate(P)
@test jacobimatrix(p)[1:100, 1:100] jacobimatrix(SemiclassicalJacobi(t, (-1//2:13//2)[i], (-1:6)[i], (-1//2:13//2)[i]))[1:100, 1:100]
@test jacobimatrix(p)[1:100, 1:100] jacobimatrix(SemiclassicalJacobi(t, (-1/2:13/2)[i], (-1:6)[i], (-1/2:13/2)[i]))[1:100, 1:100]
end
end

Expand Down

2 comments on commit d6ae78f

@dlfivefifty
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/121124

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.5.10 -m "<description of version>" d6ae78f5c15408222dc22c347c25423b7f1c4e78
git push origin v0.5.10

Please sign in to comment.