From c5dd2d00a058500a407cf47741a6de76b91918b2 Mon Sep 17 00:00:00 2001 From: Ethanfel Date: Tue, 14 Apr 2026 23:12:58 +0200 Subject: [PATCH] fix: use noarchive mode and enable console to debug PYZ TOC error MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bypasses PYZ archive entirely — modules stored as individual .pyc files. Console enabled temporarily to capture error output. Co-Authored-By: Claude Opus 4.6 --- 8cut.spec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/8cut.spec b/8cut.spec index 4df079f..26fc73a 100644 --- a/8cut.spec +++ b/8cut.spec @@ -86,7 +86,7 @@ a = Analysis( "pytest", "hypothesis", ], - noarchive=False, + noarchive=True, cipher=block_cipher, ) @@ -102,7 +102,7 @@ exe_kwargs = dict( bootloader_ignore_signals=False, strip=False, upx=False, - console=False, # GUI app + console=True, # temporary: show errors on launch ) if system == "Darwin":