Skip to content

Commit

Permalink
Try to use multiprocessing on a Mac
Browse files Browse the repository at this point in the history
  • Loading branch information
vasole committed Nov 29, 2023
1 parent a92aa1d commit 84401fb
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions package/pyinstaller/pyinstaller.spec
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,9 @@ excludes = ["fabio", "hdf5plugin", "silx"]
# if this module is included, the interactive console does not work
excludes.append("debugpy")

# This module basically does not work with frozen versions
excludes.append("multiprocessing")
if sys.platform.startswith("win"):
# This module basically does not work with frozen versions
excludes.append("multiprocessing")


# get the script list
Expand Down

0 comments on commit 84401fb

Please sign in to comment.