From 18f6d4db66bdef2e7e110da65eb8750d8b1998d7 Mon Sep 17 00:00:00 2001 From: t-bltg Date: Sun, 31 Mar 2024 22:19:51 +0200 Subject: [PATCH 1/2] do not run i/o when precompiling --- src/Gaston.jl | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Gaston.jl b/src/Gaston.jl index 58f76d4..4c65c90 100644 --- a/src/Gaston.jl +++ b/src/Gaston.jl @@ -68,6 +68,7 @@ end # initialize gnuplot function __init__() global P, gnuplot_state, GNUPLOT_VERSION + ccall(:jl_generating_output, Cint, ()) == 1 && return gnuplot_state.gnuplot_available = false From 3b897737645bfa53222dfbc8cca301b4bb9d19eb Mon Sep 17 00:00:00 2001 From: t-bltg Date: Sun, 31 Mar 2024 22:24:10 +0200 Subject: [PATCH 2/2] bump version --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 3968e8f..d4a697b 100644 --- a/Project.toml +++ b/Project.toml @@ -1,6 +1,6 @@ name = "Gaston" uuid = "4b11ee91-296f-5714-9832-002c20994614" -version = "1.1.0" +version = "1.1.1" [deps] ColorSchemes = "35d6a980-a343-548e-a6ea-1d62b119f2f4"