From 2c65ae753bd4d776d8861e0b129d41827991415c Mon Sep 17 00:00:00 2001 From: Avik Pal Date: Sat, 27 Jul 2024 12:41:41 -0700 Subject: [PATCH] test: skip Lux tests pre-1.9 --- test/runtests.jl | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test/runtests.jl b/test/runtests.jl index 77ecc063..bf98d3a1 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -46,4 +46,7 @@ include("nn.jl") include("struct.jl") include("closure.jl") include("compile.jl") -include("nn_lux.jl") + +if VERSION ≥ v"1.10-" # Lux isn't supported on 1.9 + include("nn_lux.jl") +end