Skip to content

Commit 298421d

Browse files
authored
Support FastTransforms v0.10 (#18)
1 parent 44346ec commit 298421d

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ os:
55
- osx
66
julia:
77
- "1.3"
8-
- "1.4"
8+
- "1.5"
99
- nightly
1010
matrix:
1111
allow_failures:

Project.toml

Lines changed: 3 additions & 3 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.2.4"
3+
version = "0.2.5"
44

55
[deps]
66
AbstractFFTs = "621f4979-c628-5d54-868e-fcf4e3e8185c"
@@ -18,8 +18,8 @@ AbstractFFTs = "0.5"
1818
ApproxFunBase = "0.3.4"
1919
DomainSets = "0.3, 0.4"
2020
FFTW = "1.1"
21-
FastTransforms = "0.8, 0.9"
22-
InfiniteArrays = "0.5, 0.6, 0.7"
21+
FastTransforms = "0.10"
22+
InfiniteArrays = "0.5, 0.6, 0.7, 0.8"
2323
IntervalSets = "0.5"
2424
Reexport = "0.2"
2525
SpecialFunctions = "0.8, 0.9, 0.10"

src/ApproxFunFourier.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -245,8 +245,8 @@ points(sp::CosSpace,n) = points(domain(sp),2n-2)[1:n]
245245

246246

247247

248-
plan_transform(::CosSpace,x::AbstractVector) = plan_chebyshevtransform(x;kind=2)
249-
plan_itransform(::CosSpace,x::AbstractVector) = plan_ichebyshevtransform(x;kind=2)
248+
plan_transform(::CosSpace,x::AbstractVector) = plan_chebyshevtransform(x, Val(2))
249+
plan_itransform(::CosSpace,x::AbstractVector) = plan_ichebyshevtransform(x, Val(2))
250250
transform(::CosSpace,vals,plan) = plan*vals
251251
itransform(::CosSpace,cfs,plan) = plan*cfs
252252

0 commit comments

Comments
 (0)