Skip to content

Commit ff69b2c

Browse files
Require Julia v1.10 (LTS) (#140)
* Require Julia v1.10 (LTS) * Remove old code * Update .github/workflows/CI.yml Co-authored-by: David Widmann <devmotion@users.noreply.github.com> * Update .github/workflows/CI.yml Co-authored-by: David Widmann <devmotion@users.noreply.github.com> * Remove version check from Aqua.test_all --------- Co-authored-by: David Widmann <devmotion@users.noreply.github.com>
1 parent bf95d72 commit ff69b2c

File tree

4 files changed

+9
-14
lines changed

4 files changed

+9
-14
lines changed

.github/workflows/CI.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ jobs:
2727
fail-fast: false
2828
matrix:
2929
version:
30-
- '1.0'
30+
- 'min'
31+
- 'lts'
3132
- '1'
32-
- 'nightly'
3333
os:
3434
- ubuntu-latest
3535
- macOS-latest

Project.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "AbstractFFTs"
22
uuid = "621f4979-c628-5d54-868e-fcf4e3e8185c"
3-
version = "1.5.0"
3+
version = "1.6.0-dev"
44

55
[deps]
66
ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4"
@@ -20,11 +20,11 @@ Aqua = "0.8"
2020
ChainRulesCore = "1"
2121
ChainRulesTestUtils = "1"
2222
FiniteDifferences = "0.12"
23-
LinearAlgebra = "<0.0.1, 1"
24-
Random = "<0.0.1, 1"
25-
Test = "<0.0.1, 1"
23+
LinearAlgebra = "1"
24+
Random = "1"
25+
Test = "1"
2626
Unitful = "1"
27-
julia = "^1.0"
27+
julia = "1.10"
2828

2929
[extras]
3030
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"

src/AbstractFFTs.jl

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,4 @@ export fft, ifft, bfft, fft!, ifft!, bfft!,
88
include("definitions.jl")
99
include("TestUtils.jl")
1010

11-
if !isdefined(Base, :get_extension)
12-
include("../ext/AbstractFFTsChainRulesCoreExt.jl")
13-
include("../ext/AbstractFFTsTestExt.jl")
14-
end
15-
1611
end # module

test/runtests.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ using FiniteDifferences
99

1010
import Aqua
1111
@testset "Project quality" begin
12-
Aqua.test_all(AbstractFFTs, ambiguities = VERSION >= v"1.10")
12+
Aqua.test_all(AbstractFFTs)
1313
end
1414

1515
Random.seed!(1234)
@@ -202,7 +202,7 @@ end
202202
# type inference checks of `rrule` fail on old Julia versions
203203
# for higher-dimensional arrays:
204204
# https://github.com/JuliaMath/AbstractFFTs.jl/pull/58#issuecomment-916530016
205-
check_inferred = ndims(x) < 3 || VERSION >= v"1.6"
205+
check_inferred = ndims(x) < 3
206206

207207
test_frule(AbstractFFTs.fftshift, x, dims)
208208
test_rrule(AbstractFFTs.fftshift, x, dims; check_inferred=check_inferred)

0 commit comments

Comments
 (0)