From d21fbfc9be675af37dc9792cb1f8de8d35fdafa5 Mon Sep 17 00:00:00 2001 From: "Steven G. Johnson" Date: Wed, 25 Nov 2015 17:00:57 -0500 Subject: [PATCH] don't test for 0.4- Testing version > 0.4- is wrong because it incorrectly implies that all pre-releases of 0.4 work. Either test for the specific 0.4 build you need, or test for `VERSION > v"0.4"` (i.e., the release version). However, since you REQUIRE julia 0.4 anyway, you can omit this test entirely. --- src/Plots.jl | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/Plots.jl b/src/Plots.jl index 6b2d3bd7..491e83f3 100644 --- a/src/Plots.jl +++ b/src/Plots.jl @@ -1,7 +1,5 @@ -if VERSION >= v"0.4-" - __precompile__() -end + __precompile__() module Plots