From aa49e8b7ed87e42b89aaac4a155dee326e70b5ea Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 22 Mar 2026 16:25:33 -0700 Subject: [PATCH] Add soundfile as explicit dependency soundfile was only a transitive dep of torchaudio but collect_all() in PyInstaller can't bundle it if it's not installed. Adding it as an explicit dependency ensures it's in the venv and bundled correctly. Co-Authored-By: Claude Opus 4.6 --- python/pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/python/pyproject.toml b/python/pyproject.toml index 1228b2a..132c60a 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -15,6 +15,7 @@ dependencies = [ "pysubs2>=1.7.0", "openai>=1.0.0", "anthropic>=0.20.0", + "soundfile>=0.12.0", ] [project.optional-dependencies]