Skip to content

Commit a01c3e4

Browse files
committed
Remove Julia v1.8 version check for precompilation
Since the current Julia LTS is v1.10, the version check for v1.8 is no longer needed. The precompilation file is now included unconditionally. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent f0c82e9 commit a01c3e4

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)