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.
This commit is contained in:
Steven G. Johnson 2015-11-25 17:00:57 -05:00
parent 1db2d8d8d8
commit d21fbfc9be

View File

@ -1,7 +1,5 @@
if VERSION >= v"0.4-"
__precompile__()
end
__precompile__()
module Plots