Skip to content

Commit c2bd64f

Browse files
authored
chore: add extra deps compats (#790)
* chore: add extra deps compats * Relax JET
1 parent ef8b7a4 commit c2bd64f

File tree

4 files changed

+20
-12
lines changed

4 files changed

+20
-12
lines changed

DifferentiationInterface/Project.toml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,11 @@ DifferentiationInterfaceTrackerExt = "Tracker"
5252
DifferentiationInterfaceZygoteExt = ["Zygote", "ForwardDiff"]
5353

5454
[compat]
55+
Aqua = "0.8.12"
5556
ADTypes = "1.13.0"
5657
ChainRulesCore = "1.23.0"
58+
ComponentArrays = "0.15.27"
59+
DataFrames = "1.7.0"
5760
DiffResults = "1.1.0"
5861
Diffractor = "=0.2.6"
5962
Enzyme = "0.13.39"
@@ -65,16 +68,22 @@ FiniteDifferences = "0.12.31"
6568
ForwardDiff = "0.10.36,1"
6669
GPUArraysCore = "0.2"
6770
GTPSA = "1.4.0"
71+
JET = "0.9"
72+
JLArrays = "0.2.0"
6873
JuliaFormatter = "1,2"
69-
LinearAlgebra = "<0.0.1,1"
74+
LinearAlgebra = "1"
7075
Mooncake = "0.4.88"
76+
Pkg = "1"
7177
PolyesterForwardDiff = "0.1.2"
78+
Random = "1"
7279
ReverseDiff = "1.15.1"
73-
SparseArrays = "<0.0.1,1"
80+
SparseArrays = "1"
7481
SparseConnectivityTracer = "0.6.14"
7582
SparseMatrixColorings = "0.4.9"
83+
StableRNGs = "1.0.1"
7684
StaticArrays = "1.9.7"
7785
Symbolics = "5.27.1, 6"
86+
Test = "1"
7887
Tracker = "0.2.33"
7988
Zygote = "0.6.69, 0.7"
8089
julia = "1.10"

DifferentiationInterface/test/Core/Internals/_formalities.jl

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,7 @@ using SparseMatrixColorings
1010
using SparseArrays
1111

1212
@testset "Aqua" begin
13-
Aqua.test_all(
14-
DifferentiationInterface; ambiguities=false, deps_compat=(; check_extras=false)
15-
)
13+
Aqua.test_all(DifferentiationInterface; ambiguities=false, undocumented_names=true)
1614
end
1715

1816
@testset "JET" begin

DifferentiationInterfaceTest/Project.toml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ DifferentiationInterfaceTestLuxExt = ["ComponentArrays", "ForwardDiff", "Lux", "
3838
DifferentiationInterfaceTestStaticArraysExt = "StaticArrays"
3939

4040
[compat]
41+
Aqua = "0.8.12"
4142
ADTypes = "1.7.0"
4243
AllocCheck = "0.2"
4344
Chairmarks = "1.2.1"
@@ -46,24 +47,26 @@ DataFrames = "1.6.1"
4647
DifferentiationInterface = "0.6.0"
4748
DocStringExtensions = "0.8,0.9"
4849
ExplicitImports = "1.10.1"
50+
FiniteDiff = "2.27.0"
4951
FiniteDifferences = "0.12"
5052
Flux = "0.16"
5153
ForwardDiff = "0.10.36,1"
5254
Functors = "0.4, 0.5"
5355
JET = "0.4 - 0.8, 0.9"
5456
JLArrays = "0.1, 0.2"
5557
JuliaFormatter = "1,2"
56-
LinearAlgebra = "<0.0.1,1"
58+
LinearAlgebra = "1"
5759
Lux = "1.1.0"
5860
LuxTestUtils = "1.3.1"
61+
Pkg = "1"
5962
ProgressMeter = "1"
60-
Random = "<0.0.1,1"
61-
SparseArrays = "<0.0.1,1"
63+
Random = "1"
64+
SparseArrays = "1"
6265
SparseConnectivityTracer = "0.5.0,0.6"
6366
SparseMatrixColorings = "0.4.9"
6467
StaticArrays = "1.9"
6568
Statistics = "1"
66-
Test = "<0.0.1,1"
69+
Test = "1"
6770
Zygote = "0.6, 0.7"
6871
julia = "1.10"
6972

DifferentiationInterfaceTest/test/formalities.jl

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,7 @@ using SparseMatrixColorings: SparseMatrixColorings
88
using Test
99

1010
@testset "Aqua" begin
11-
Aqua.test_all(
12-
DifferentiationInterfaceTest; ambiguities=false, deps_compat=(; check_extras=false)
13-
)
11+
Aqua.test_all(DifferentiationInterfaceTest; ambiguities=false, undocumented_names=true)
1412
end
1513
@testset "JuliaFormatter" begin
1614
@test JuliaFormatter.format(

0 commit comments

Comments
 (0)