Skip to content

Commit 5030485

Browse files
authored
Merge pull request #39 from mcabbott/compathelper/new_version/2020-12-24-19-28-36-604-1134384501
CompatHelper: bump compat for "AbstractFFTs" to "1.0"
2 parents 7caa53a + 3979868 commit 5030485

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
fail-fast: false
1717
matrix:
1818
version:
19-
- '1.0' # Replace this with the minimum Julia version that your package supports. E.g. if your package requires Julia 1.5 or higher, change this to '1.5'.
19+
- '1.3'
2020
- '1' # Leave this line unchanged. '1' will automatically expand to the latest stable 1.x release of Julia.
2121
- 'nightly'
2222
os:

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ language: julia
22
os:
33
- linux
44
julia:
5-
- 1.0
65
- 1.3
76
- 1
87
- nightly

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"
1717
Tables = "bd369af6-aec1-5ad0-b16a-f7cc5008161c"
1818

1919
[compat]
20-
AbstractFFTs = "0.5"
20+
AbstractFFTs = "0.5, 1.0"
2121
BenchmarkTools = "0.5"
2222
CovarianceEstimation = "0.2"
2323
IntervalSets = "0.5.1"

src/fft.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ for shift in [:fftshift, :ifftshift]
3939
end
4040

4141
# copy(fftfreq(10, 1)) isa Vector # perhaps that needs a method:
42-
Base.copy(x::Frequencies{<:Number}) = x
42+
# Base.copy(x::Frequencies{<:Number}) = x # fixed in AbstractFFts 1.0
4343

4444
fft_keys(f, A, dims, B) = ntuple(ndims(A)) do d
4545
k = axiskeys(A,d)

0 commit comments

Comments
 (0)