From d943e1d6d4a72e393bc7c7dd19342324cbfce6e2 Mon Sep 17 00:00:00 2001 From: Jamie Pine Date: Sun, 25 Jan 2026 22:01:57 -0800 Subject: [PATCH] Remove all module exclusions --- backend/build_binary.py | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/backend/build_binary.py b/backend/build_binary.py index 4c5745ba..088f6e13 100644 --- a/backend/build_binary.py +++ b/backend/build_binary.py @@ -26,20 +26,6 @@ def build_server(): args.extend(['--paths', str(local_qwen_path)]) print(f"Using local qwen_tts source from: {local_qwen_path}") - # Exclude only truly unnecessary modules - # Don't exclude anything torch or the standard library might need internally - args.extend([ - '--exclude-module', 'matplotlib', - '--exclude-module', 'IPython', - '--exclude-module', 'notebook', - '--exclude-module', 'pytest', - '--exclude-module', 'tensorboard', - '--exclude-module', 'tkinter', - '--exclude-module', 'sklearn', - '--exclude-module', 'pandas', - '--exclude-module', 'torchaudio', - ]) - # Add hidden imports args.extend([ '--hidden-import', 'backend',