Skip to content

Commit 1e62b59

Browse files
authored
fix: disable 1.12 precompile (#1756)
1 parent 6fc66b3 commit 1e62b59

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Precompile.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ end
4949

5050
# Precompilation on 1.10 hits an apparent bug: https://github.com/JuliaLang/julia/issues/56947
5151
function precompilation_supported()
52-
return VERSION >= v"1.11" || VERSION >= v"1.10.8"
52+
return (VERSION >= v"1.11" || VERSION >= v"1.10.8") && (VERSION < v"1.12-")
5353
end
5454

5555
if Reactant_jll.is_available()

0 commit comments

Comments
 (0)