Skip to content

Commit 0a6d022

Browse files
committed
fix compat
1 parent 50a2304 commit 0a6d022

File tree

5 files changed

+21
-21
lines changed

5 files changed

+21
-21
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ DifferentiationInterface = "0.7"
4141
Distributions = "0.25"
4242
DistributionsAD = "0.6"
4343
FillArrays = "1"
44-
ForwardDiff = "0.10, 1"
44+
ForwardDiff = "0.10, 1.1"
4545
LinearAlgebra = "1"
4646
Lux = "1"
4747
LuxCore = "1"

benchmark/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ BenchmarkTools = "1"
1919
ComponentArrays = "0.15"
2020
DifferentiationInterface = "0.7"
2121
Distributions = "0.25"
22-
ForwardDiff = "0.10, 1"
22+
ForwardDiff = "0.10, 1.1"
2323
Lux = "1"
2424
LuxCore = "1"
2525
OrdinaryDiffEqDefault = "1"

src/ContinuousNormalizingFlows.jl

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -52,21 +52,21 @@ export construct,
5252
CondLayer,
5353
PlanarLayer
5454

55-
include(joinpath("layers", "cond_layer.jl"))
56-
include(joinpath("layers", "planar_layer.jl"))
55+
include("layers/cond_layer.jl")
56+
include("layers/planar_layer.jl")
5757

58-
include(joinpath("core", "types.jl"))
59-
include(joinpath("core", "base_icnf.jl"))
60-
include(joinpath("core", "icnf.jl"))
61-
include(joinpath("core", "utils.jl"))
58+
include("core/types.jl")
59+
include("core/base_icnf.jl")
60+
include("core/icnf.jl")
61+
include("core/utils.jl")
6262

63-
include(joinpath("exts", "mlj_ext", "core.jl"))
64-
include(joinpath("exts", "mlj_ext", "core_icnf.jl"))
65-
include(joinpath("exts", "mlj_ext", "core_cond_icnf.jl"))
63+
include("exts/mlj_ext/core.jl")
64+
include("exts/mlj_ext/core_icnf.jl")
65+
include("exts/mlj_ext/core_cond_icnf.jl")
6666

67-
include(joinpath("exts", "dist_ext", "core.jl"))
68-
include(joinpath("exts", "dist_ext", "core_icnf.jl"))
69-
include(joinpath("exts", "dist_ext", "core_cond_icnf.jl"))
67+
include("exts/dist_ext/core.jl")
68+
include("exts/dist_ext/core_icnf.jl")
69+
include("exts/dist_ext/core_cond_icnf.jl")
7070

7171
"""
7272
Implementations of Infinitesimal Continuous Normalizing Flows Algorithms in Julia

test/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Distances = "0.10"
3030
Distributions = "0.25"
3131
Enzyme = "0.13"
3232
ExplicitImports = "1"
33-
ForwardDiff = "0.10, 1"
33+
ForwardDiff = "0.10, 1.1"
3434
JET = "0.9, 0.10, 0.11"
3535
Lux = "1"
3636
LuxCore = "1"

test/runtests.jl

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,26 +24,26 @@ GROUP = get(ENV, "GROUP", "All")
2424

2525
Test.@testset verbose = true showtiming = true failfast = false "Overall" begin
2626
if GROUP == "All" || GROUP in ["SmokeXOut", "SmokeXIn", "SmokeXYOut", "SmokeXYIn"]
27-
include(joinpath("ci_tests", "smoke_tests.jl"))
27+
include("ci_tests/smoke_tests.jl")
2828
end
2929

3030
if GROUP == "All" || GROUP == "Regression"
31-
include(joinpath("ci_tests", "regression_tests.jl"))
31+
include("ci_tests/regression_tests.jl")
3232
end
3333

3434
if GROUP == "All" || GROUP == "Speed"
35-
include(joinpath("ci_tests", "speed_tests.jl"))
35+
include("ci_tests/speed_tests.jl")
3636
end
3737

3838
if GROUP == "All" || GROUP == "CheckByAqua"
39-
include(joinpath("quality_tests", "checkby_Aqua_tests.jl"))
39+
include("quality_tests/checkby_Aqua_tests.jl")
4040
end
4141

4242
if GROUP == "All" || GROUP == "CheckByJET"
43-
include(joinpath("quality_tests", "checkby_JET_tests.jl"))
43+
include("quality_tests/checkby_JET_tests.jl")
4444
end
4545

4646
if GROUP == "All" || GROUP == "CheckByExplicitImports"
47-
include(joinpath("quality_tests", "checkby_ExplicitImports_tests.jl"))
47+
include("quality_tests/checkby_ExplicitImports_tests.jl")
4848
end
4949
end

0 commit comments

Comments
 (0)