Add soundfile as explicit dependency
All checks were successful
Build Sidecars / Bump sidecar version and tag (push) Successful in 4s
Release / Bump version and tag (push) Successful in 5s
Build Sidecars / Build Sidecar (macOS) (push) Successful in 3m46s
Release / Build App (macOS) (push) Successful in 1m17s
Build Sidecars / Build Sidecar (Linux) (push) Successful in 15m3s
Release / Build App (Linux) (push) Successful in 4m25s
Build Sidecars / Build Sidecar (Windows) (push) Successful in 56m51s
Release / Build App (Windows) (push) Successful in 3m18s

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 <noreply@anthropic.com>
This commit is contained in:
Claude
2026-03-22 16:25:33 -07:00
parent a53da4f797
commit aa49e8b7ed

View File

@@ -15,6 +15,7 @@ dependencies = [
"pysubs2>=1.7.0", "pysubs2>=1.7.0",
"openai>=1.0.0", "openai>=1.0.0",
"anthropic>=0.20.0", "anthropic>=0.20.0",
"soundfile>=0.12.0",
] ]
[project.optional-dependencies] [project.optional-dependencies]