Skip to content

Commit f58adf4

Browse files
committed
Remove Julia v1.8 version check for precompilation
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 <noreply@anthropic.com>
1 parent f0c82e9 commit f58adf4

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/RootedTrees.jl

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1613,9 +1613,7 @@ function __init__()
16131613
return nothing
16141614
end
16151615

1616-
# explicit precompilation on Julia v1.8 and newer
1617-
@static if VERSION >= v"1.8"
1618-
include("precompile.jl")
1619-
end
1616+
# explicit precompilation
1617+
include("precompile.jl")
16201618

16211619
end # module

0 commit comments

Comments
 (0)