Remove triton dependency to fix conflicts with PyTorch 2.4

- PyTorch 2.4 requires triton==3.0.0, but whisperx needs >=3.3.0
- Temporarily removed triton to resolve dependency conflict
- WhisperX should work without triton optimizations
This commit is contained in:
2026-05-13 03:09:09 +03:00
parent eff754d03e
commit 7c622bd149

View File

@@ -23,7 +23,6 @@ dependencies = [
"torchaudio~=2.4.0", "torchaudio~=2.4.0",
"torchvision~=0.19.0", "torchvision~=0.19.0",
"transformers>=4.48.0", "transformers>=4.48.0",
"triton>=3.3.0; sys_platform == 'linux' and platform_machine == 'x86_64'", # only install triton on x86_64 Linux
"fastapi>=0.104.0", "fastapi>=0.104.0",
"uvicorn[standard]>=0.24.0", "uvicorn[standard]>=0.24.0",
"python-multipart>=0.0.6", "python-multipart>=0.0.6",