From 4e89b66bc215d13a773e79bd699237326d37533b Mon Sep 17 00:00:00 2001 From: Brandon Flores Date: Sun, 20 Oct 2024 17:58:41 -0500 Subject: [PATCH] Don't attempt to test extension if Julia < v1.9.0 --- test/runtests.jl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/runtests.jl b/test/runtests.jl index cf29c5e..ea8f88b 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -15,5 +15,7 @@ Aqua.test_all(CliffordNumbers; unbound_args = false) include("indexing.jl") include("conversion.jl") include("operations.jl") - include("ext/Unitful.jl") + if VERSION >= v"1.9.0" + include("ext/Unitful.jl") + end end