From 97db67790ded7c6bee7c3412b16dce4248730c38 Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Thu, 16 Apr 2026 09:46:30 -0400 Subject: [PATCH] [no ci] Update gam.py --- src/gam.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/gam.py b/src/gam.py index 7472c270..6df01277 100755 --- a/src/gam.py +++ b/src/gam.py @@ -11,5 +11,7 @@ from gam.__main__ import main if __name__ == '__main__': if platform.system() != 'Linux': multiprocessing.freeze_support() - multiprocessing.set_start_method('spawn', force=True) + # Python 3.14.4 and PyInstaller 6.19.0 don't play nice with Linux forkserver + # use spawn everywhere for now. + multiprocessing.set_start_method('spawn', force=True) main()