From dd97d86646456fa266fc28bc13904de5138ec903 Mon Sep 17 00:00:00 2001 From: Ricky O'Steen <39831871+rosteen@users.noreply.github.com> Date: Mon, 11 Sep 2023 16:27:01 -0400 Subject: [PATCH] Debug standalone build (#2441) * Log jdaviz output for debugging * Run workflow on debugging branch * See if collecting data from jupyter-client will fix this, otherwise might need to downgrade * Remove debugging stuff --- standalone/hooks/hook-jupyter_client.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/standalone/hooks/hook-jupyter_client.py b/standalone/hooks/hook-jupyter_client.py index 6ecd059447..1b8a3f8cfb 100644 --- a/standalone/hooks/hook-jupyter_client.py +++ b/standalone/hooks/hook-jupyter_client.py @@ -1,3 +1,7 @@ -from PyInstaller.utils.hooks import collect_submodules, collect_data_files +from PyInstaller.utils.hooks import (collect_submodules, + collect_data_files, + copy_metadata) +datas = collect_data_files('jupyter_client') +datas += copy_metadata('jupyter_client') hiddenimports = collect_submodules("jupyter_client")