From 8c895ebe11cb11c839bb252c424f89f7ee5736da Mon Sep 17 00:00:00 2001 From: Tim Holy Date: Mon, 31 Aug 2020 18:09:52 -0500 Subject: [PATCH] Restrict precompilation to Julia 1.4.2 and higher I've seen one test failure on Julia 1.1, and it's better to be safe than sorry and not take the risk. --- src/FileIO.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/FileIO.jl b/src/FileIO.jl index b854d8fc..4837d1bd 100644 --- a/src/FileIO.jl +++ b/src/FileIO.jl @@ -62,7 +62,7 @@ include("registry.jl") """ FileIO -if VERSION >= v"1.1.0" +if VERSION >= v"1.4.2" # https://github.com/JuliaLang/julia/pull/35378 include("precompile.jl") _precompile_() end