From bf10a8307341443fb7c354020c09a98df41c9698 Mon Sep 17 00:00:00 2001 From: Reuben Gardos Reid <5456207+ReubenJ@users.noreply.github.com> Date: Wed, 29 Oct 2025 14:39:20 +0100 Subject: [PATCH] test: disable JET for julia < 1.12 --- test/quality_tests.jl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/quality_tests.jl b/test/quality_tests.jl index aa14df8..c19ab2a 100644 --- a/test/quality_tests.jl +++ b/test/quality_tests.jl @@ -5,5 +5,7 @@ end @testitem "Code linting (JET.jl)" begin using JET - JET.test_package(GraphDynamicalSystems; target_defined_modules = true) + if VERSION ≥ v"1.12" + JET.test_package(GraphDynamicalSystems; target_defined_modules = true) + end end