Skip to content

Commit 068378b

Browse files
Update DomainSets requirement from 0.3, 0.4, 0.5, 0.6, 0.7 to 0.3, 0.4, 0.5, 0.6, 0.7, 0.8 (#147)
* Update DomainSets requirement from 0.3, 0.4, 0.5, 0.6, 0.7 to 0.3, 0.4, 0.5, 0.6, 0.7, 0.8 Updates the requirements on [DomainSets](https://github.com/JuliaApproximation/DomainSets.jl) to permit the latest version. - [Release notes](https://github.com/JuliaApproximation/DomainSets.jl/releases) - [Commits](https://github.com/JuliaApproximation/DomainSets.jl/commits/v0.8.0) --- updated-dependencies: - dependency-name: DomainSets dependency-version: 0.8.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> * Bump minimum compatible dependency versions * Update tests to use cartesianproduct * Bump version to 0.3.33 --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Jishnu Bhattacharya <jishnub.github@gmail.com>
1 parent 8bf3edc commit 068378b

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

Project.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "ApproxFunFourier"
22
uuid = "59844689-9c9d-51bf-9583-5b794ec66d30"
3-
version = "0.3.32"
3+
version = "0.3.33"
44

55
[deps]
66
AbstractFFTs = "621f4979-c628-5d54-868e-fcf4e3e8185c"
@@ -17,11 +17,11 @@ StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
1717

1818
[compat]
1919
AbstractFFTs = "0.5, 1"
20-
ApproxFunBase = "0.8.67, 0.9.28"
21-
ApproxFunOrthogonalPolynomials = "0.6"
20+
ApproxFunBase = "0.9.35"
21+
ApproxFunOrthogonalPolynomials = "0.6.63"
2222
Aqua = "0.8"
2323
BandedMatrices = "0.16, 0.17, 1"
24-
DomainSets = "0.3, 0.4, 0.5, 0.6, 0.7"
24+
DomainSets = "0.3, 0.4, 0.5, 0.6, 0.7, 0.8"
2525
FFTW = "1.1"
2626
FastTransforms = "0.10, 0.11, 0.12, 0.13, 0.14, 0.15, 0.16, 0.17"
2727
InfiniteArrays = "0.5, 0.6, 0.7, 0.8, 0.9, 0.10, 0.11, 0.12, 0.13, 0.14, 0.15"

test/runtests.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using ApproxFunFourier
22
using ApproxFunBase
3-
using ApproxFunBase: Block, EmptyDomain, UnionDomain
3+
using ApproxFunBase: Block, EmptyDomain, UnionDomain, cartesianproduct
44
using ApproxFunBase.TestUtils: testspace, testtransforms, testmultiplication, testraggedbelowoperator,
55
testbandedoperator, testblockbandedoperator, testbandedblockbandedoperator,
66
testcalculus, testfunctional
@@ -45,9 +45,9 @@ end
4545

4646
@test SVector(1,0) Circle((0.,0.),1.)
4747

48-
@test (PeriodicSegment() × ChebyshevInterval()) isa UnionDomain
49-
@test (ChebyshevInterval() × PeriodicSegment()) isa UnionDomain
50-
@test (PeriodicSegment() × PeriodicSegment()) isa EmptyDomain
48+
@test (cartesianproduct(PeriodicSegment(), ChebyshevInterval())) isa UnionDomain
49+
@test (cartesianproduct(ChebyshevInterval(), PeriodicSegment())) isa UnionDomain
50+
@test (cartesianproduct(PeriodicSegment(), PeriodicSegment())) isa EmptyDomain
5151

5252
T = PeriodicSegment{SVector{2,Float64}}
5353
@test convert(T, ApproxFunBase.AnyDomain()) isa T

0 commit comments

Comments
 (0)