Skip to content

Commit

Permalink
Include all of numpy in the bundle
Browse files Browse the repository at this point in the history
- This issue was caused by numpy 2.0 which was just released this week

Re #2852
  • Loading branch information
ptsavol committed Jun 19, 2024
1 parent 02fb8c2 commit 849a928
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 0 additions & 1 deletion PyInstaller hooks/hook-jupyter_client.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from PyInstaller.utils.hooks import collect_all


datas, binaries, hiddenimports = collect_all("jupyter_client")
3 changes: 3 additions & 0 deletions PyInstaller hooks/hook-numpy.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from PyInstaller.utils.hooks import collect_all

datas, binaries, hiddenimports = collect_all("numpy")
1 change: 0 additions & 1 deletion PyInstaller hooks/hook-qtconsole.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from PyInstaller.utils.hooks import collect_all


datas, binaries, hiddenimports = collect_all("qtconsole")

0 comments on commit 849a928

Please sign in to comment.