fix: use noarchive mode and enable console to debug PYZ TOC error
Bypasses PYZ archive entirely — modules stored as individual .pyc files. Console enabled temporarily to capture error output. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -86,7 +86,7 @@ a = Analysis(
|
|||||||
"pytest",
|
"pytest",
|
||||||
"hypothesis",
|
"hypothesis",
|
||||||
],
|
],
|
||||||
noarchive=False,
|
noarchive=True,
|
||||||
cipher=block_cipher,
|
cipher=block_cipher,
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -102,7 +102,7 @@ exe_kwargs = dict(
|
|||||||
bootloader_ignore_signals=False,
|
bootloader_ignore_signals=False,
|
||||||
strip=False,
|
strip=False,
|
||||||
upx=False,
|
upx=False,
|
||||||
console=False, # GUI app
|
console=True, # temporary: show errors on launch
|
||||||
)
|
)
|
||||||
|
|
||||||
if system == "Darwin":
|
if system == "Darwin":
|
||||||
|
|||||||
Reference in New Issue
Block a user