From fe07b15af96ae7a0a4ea649a5367a77af095cf7c Mon Sep 17 00:00:00 2001 From: Josef Haupt Date: Mon, 18 Dec 2023 12:34:22 +0100 Subject: [PATCH] updated spec file to include compiled gradio py (#215) Co-authored-by: Josef Haupt --- BirdNET-Analyzer-full.spec | 3 +++ 1 file changed, 3 insertions(+) diff --git a/BirdNET-Analyzer-full.spec b/BirdNET-Analyzer-full.spec index a8f72f97..22ecaaef 100644 --- a/BirdNET-Analyzer-full.spec +++ b/BirdNET-Analyzer-full.spec @@ -54,6 +54,9 @@ gui = Analysis( win_private_assemblies=False, cipher=block_cipher, noarchive=False, + module_collection_mode={ + 'gradio': 'py', # Collect gradio package as source .py files + }, ) gui_pyz = PYZ(gui.pure, gui.zipped_data, cipher=block_cipher)