From 11cc75d8218a1a48b97afbeb5ff2499822cc2f3e Mon Sep 17 00:00:00 2001 From: Tim Holy Date: Tue, 1 Sep 2020 09:25:37 -0500 Subject: [PATCH] Restrict precompilation to Julia 1.4.2 and higher (#274) 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