From 380b85f5229662037011617582f685667cf734f5 Mon Sep 17 00:00:00 2001 From: Stephan Sahm Date: Thu, 11 Jul 2024 09:35:13 +0200 Subject: [PATCH] PlutoRunner is not available --- Project.toml | 4 +--- ext/CondaPkgExt.jl | 1 + ext/PlutoRunnerPythonCallExt.jl | 8 -------- 3 files changed, 2 insertions(+), 11 deletions(-) delete mode 100644 ext/PlutoRunnerPythonCallExt.jl diff --git a/Project.toml b/Project.toml index 817d41d..cd86424 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "JolinPluto" uuid = "5b0b4ef8-f4e6-4363-b674-3f031f7b9530" authors = ["Stephan Sahm and contributors"] -version = "0.1.69" +version = "0.1.70" [deps] AbstractPlutoDingetjes = "6e696c72-6542-2067-7265-42206c756150" @@ -22,7 +22,6 @@ AWS = "fbe9abb3-538b-5e4e-ba9e-bc94f4f92ebc" Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80" PythonCall = "6099a3de-0909-46bc-b1f4-468b9a2dfc0d" RCall = "6f49c342-dc21-5d91-9882-a32aef131414" -PlutoRunner = "dc6b355a-2368-4481-ae6d-ae0351418d79" CondaPkg = "992eb4ea-22a4-4c89-a5bb-47a3300528ab" [extensions] @@ -31,7 +30,6 @@ PlotsExt = "Plots" PythonCallExt = "PythonCall" RCallExt = "RCall" CondaPkgExt = "CondaPkg" -PlutoRunnerPythonCallExt = ["PythonCall", "PlutoRunner"] [compat] julia = "1.7" diff --git a/ext/CondaPkgExt.jl b/ext/CondaPkgExt.jl index e522bd2..55c5267 100644 --- a/ext/CondaPkgExt.jl +++ b/ext/CondaPkgExt.jl @@ -5,5 +5,6 @@ function __init__() # while PythonCall does this by itself, RCall needs this manual help, # which effects both plain Julia with RCall as well as PlutoR CondaPkg.activate!(ENV) + @info "activated CondaPkg environment" end end \ No newline at end of file diff --git a/ext/PlutoRunnerPythonCallExt.jl b/ext/PlutoRunnerPythonCallExt.jl deleted file mode 100644 index bdd2a32..0000000 --- a/ext/PlutoRunnerPythonCallExt.jl +++ /dev/null @@ -1,8 +0,0 @@ -module PythonExt -import PythonCall -import PlutoRunner - -# ignore Python objects in the expr_hash (deserialization is introducing new objectids) -PlutoRunner.expr_hash(::PythonCall.Py) = zero(PlutoRunner.ObjectID) - -end # module \ No newline at end of file