From f58adf4bfe2c3c276a9416b8b03c7a51cab86e92 Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 27 Jul 2025 12:24:32 -0400 Subject: [PATCH] Remove Julia v1.8 version check for precompilation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Since the current Julia LTS is v1.10, we can enable precompilation for all supported Julia versions (1.6+). This removes the version check that was preventing Julia 1.6 and 1.7 users from benefiting from precompilation. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- src/RootedTrees.jl | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/RootedTrees.jl b/src/RootedTrees.jl index 8ab0f1f..61738d6 100644 --- a/src/RootedTrees.jl +++ b/src/RootedTrees.jl @@ -1613,9 +1613,7 @@ function __init__() return nothing end -# explicit precompilation on Julia v1.8 and newer -@static if VERSION >= v"1.8" - include("precompile.jl") -end +# explicit precompilation +include("precompile.jl") end # module