Skip to content

Commit

Permalink
Bump InfiniteArrays and use AFB.TestUtils (#123)
Browse files Browse the repository at this point in the history
  • Loading branch information
jishnub authored Jun 10, 2024
1 parent 634c410 commit b2dc057
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
12 changes: 5 additions & 7 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "ApproxFunFourier"
uuid = "59844689-9c9d-51bf-9583-5b794ec66d30"
version = "0.3.27"
version = "0.3.28"

[deps]
AbstractFFTs = "621f4979-c628-5d54-868e-fcf4e3e8185c"
Expand All @@ -17,29 +17,27 @@ StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"

[compat]
AbstractFFTs = "0.5, 1"
ApproxFunBase = "0.8.16, 0.9"
ApproxFunBaseTest = "0.1"
ApproxFunBase = "0.8.67, 0.9.28"
ApproxFunOrthogonalPolynomials = "0.6"
Aqua = "0.8"
BandedMatrices = "0.16, 0.17, 1"
DomainSets = "0.3, 0.4, 0.5, 0.6, 0.7"
FFTW = "1.1"
FastTransforms = "0.10, 0.11, 0.12, 0.13, 0.14, 0.15, 0.16"
InfiniteArrays = "0.5, 0.6, 0.7, 0.8, 0.9, 0.10, 0.11, 0.12, 0.13"
InfiniteArrays = "0.5, 0.6, 0.7, 0.8, 0.9, 0.10, 0.11, 0.12, 0.13, 0.14"
IntervalSets = "0.5, 0.6, 0.7"
LinearAlgebra = "1.6"
Reexport = "0.2, 1"
SpecialFunctions = "0.8, 0.9, 0.10, 1.0, 2.0"
StaticArrays = "1"
Test = "1.6"
Test = "1"
julia = "1.6"

[extras]
ApproxFunBaseTest = "a931bfaf-0cfd-4a5c-b69c-bf2eed002b43"
ApproxFunOrthogonalPolynomials = "b70543e2-c0d9-56b8-a290-0d4d6d4de211"
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
SpecialFunctions = "276daf66-3868-5448-9aa4-cd146d93841b"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["ApproxFunBaseTest", "ApproxFunOrthogonalPolynomials", "Aqua", "Test", "SpecialFunctions"]
test = ["ApproxFunOrthogonalPolynomials", "Aqua", "Test", "SpecialFunctions"]
2 changes: 1 addition & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using ApproxFunFourier
using ApproxFunBase
using ApproxFunBase: Block, EmptyDomain, UnionDomain
using ApproxFunBaseTest: testspace, testtransforms, testmultiplication, testraggedbelowoperator,
using ApproxFunBase.TestUtils: testspace, testtransforms, testmultiplication, testraggedbelowoperator,
testbandedoperator, testblockbandedoperator, testbandedblockbandedoperator,
testcalculus, testfunctional
using ApproxFunOrthogonalPolynomials
Expand Down

2 comments on commit b2dc057

@jishnub
Copy link
Member Author

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/108633

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.3.28 -m "<description of version>" b2dc057b42eaeaa9249863646bc64b58d6f8d662
git push origin v0.3.28

Please sign in to comment.