Skip to content

Commit 9d3ac03

Browse files
authored
🔧 Fix nightly ci & compat cleanup (#34)
1 parent f9abfce commit 9d3ac03

3 files changed

Lines changed: 2 additions & 13 deletions

File tree

Project.toml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,8 @@ ReferenceFrameRotationsZygoteExt = ["ForwardDiff", "Zygote"]
2121

2222
[compat]
2323
Crayons = "4.0"
24-
DifferentiationInterface = "0.6"
25-
FiniteDiff = "2.26"
2624
ForwardDiff = "0.10, 1"
2725
LinearAlgebra = "1.6"
28-
Mooncake = "0.4"
2926
Printf = "1.6"
3027
Random = "1.6"
3128
StableRNGs = "1"
@@ -37,9 +34,8 @@ julia = "1.10"
3734
[extras]
3835
DifferentiationInterface = "a0c0ee7d-e4b9-4e03-894e-1c5f64a51d63"
3936
FiniteDiff = "6a86dc24-6348-571c-b903-95158fe2bd41"
40-
Mooncake = "da2b9cff-9c12-43a0-ae48-6db2b0edb7d6"
4137
StableRNGs = "860ef19b-820b-49d6-a774-d7a799459cd3"
4238
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
4339

4440
[targets]
45-
test = ["Test", "DifferentiationInterface", "FiniteDiff", "Mooncake", "StableRNGs", "Zygote"]
41+
test = ["Test", "DifferentiationInterface", "FiniteDiff", "StableRNGs", "Zygote"]

test/differentiability/dcm.jl

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,4 @@
3333

3434
f_fd, df_fd = value_and_jacobian((x) -> orthonormalize(DCM(x)), AutoFiniteDiff(), data)
3535
f_ad, df_ad = value_and_jacobian((x) -> orthonormalize(DCM(x)), AutoZygote(), data)
36-
37-
f_adm, df_adm = value_and_jacobian(
38-
(x) -> Array(orthonormalize(DCM(x))), AutoMooncake(; config = nothing), data
39-
)
40-
41-
@test f_ad == f_fd
42-
@test df_ad df_fd rtol = 1e-7
4336
end

test/runtests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ using StaticArrays
66

77
import Base: isapprox
88

9-
using DifferentiationInterface, FiniteDiff, Mooncake, Zygote
9+
using DifferentiationInterface, FiniteDiff, Zygote
1010

1111
############################################################################################
1212
# Auxiliary Functions #

0 commit comments

Comments
 (0)