Skip to content

Commit

Permalink
Debug standalone build (#2441)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
rosteen authored Sep 11, 2023
1 parent 0060d9f commit dd97d86
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion standalone/hooks/hook-jupyter_client.py
Original file line number Diff line number Diff line change
@@ -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")

0 comments on commit dd97d86

Please sign in to comment.