Skip to content

Commit 84401fb

Browse files
committed
Try to use multiprocessing on a Mac
1 parent a92aa1d commit 84401fb

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

package/pyinstaller/pyinstaller.spec

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,9 @@ excludes = ["fabio", "hdf5plugin", "silx"]
5151
# if this module is included, the interactive console does not work
5252
excludes.append("debugpy")
5353

54-
# This module basically does not work with frozen versions
55-
excludes.append("multiprocessing")
54+
if sys.platform.startswith("win"):
55+
# This module basically does not work with frozen versions
56+
excludes.append("multiprocessing")
5657

5758

5859
# get the script list

0 commit comments

Comments
 (0)