From 2879cfec5d5bce0dfa5912111aa3624ec6c87b9c Mon Sep 17 00:00:00 2001 From: Fons van der Plas Date: Tue, 23 Jan 2024 13:44:11 +0100 Subject: [PATCH] Enable Malt.jl by default on all systems (#2767) --- README.md | 1 - src/evaluation/WorkspaceManager.jl | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 86b1fc2762..f3aff4dd1b 100644 --- a/README.md +++ b/README.md @@ -103,7 +103,6 @@ _([video](https://www.youtube.com/watch?v=rpB6zQNsbQU)) Grant Sanderson ([3Blue1 For one tasty notebook 🥞 you will need: - [**Julia** v1.6 or above](https://julialang.org/downloads/#current_stable_release) -- **Linux**, **MacOS** or **Windows**, _Linux and MacOS will work best_ - Mozilla **Firefox** or Google **Chrome** ### Installation diff --git a/src/evaluation/WorkspaceManager.jl b/src/evaluation/WorkspaceManager.jl index f1e2282923..f77bbf0c83 100644 --- a/src/evaluation/WorkspaceManager.jl +++ b/src/evaluation/WorkspaceManager.jl @@ -56,8 +56,8 @@ function make_workspace((session, notebook)::SN; is_offline_renderer::Bool=false WorkerType = if is_offline_renderer || !session.options.evaluation.workspace_use_distributed Malt.InProcessWorker elseif something( - session.options.evaluation.workspace_use_distributed_stdlib, - Sys.iswindows() ? false : true + session.options.evaluation.workspace_use_distributed_stdlib, + false ) Malt.DistributedStdlibWorker else