chore: refine triton dependency to restrict installation to x86_64 Linux (#1259)

* chore: refine triton dependency to restrict installation to x86_64 Linux

* bump: update version to 3.7.2
This commit is contained in:
Barabazs
2025-10-12 02:38:29 -06:00
committed by GitHub
parent 895e5a8493
commit 505bd9c0b5
2 changed files with 8 additions and 14 deletions

View File

@@ -2,7 +2,7 @@
urls = { repository = "https://github.com/m-bain/whisperx" }
authors = [{ name = "Max Bain" }]
name = "whisperx"
version = "3.7.1"
version = "3.7.2"
description = "Time-Accurate Automatic Speech Recognition using Whisper."
readme = "README.md"
requires-python = ">=3.9, <3.14"
@@ -22,7 +22,7 @@ dependencies = [
"torch>=2.7.1",
"torchaudio",
"transformers>=4.48.0",
"triton>=3.3.0; sys_platform == 'linux'" # only install triton on Linux
"triton>=3.3.0; sys_platform == 'linux' and platform_machine == 'x86_64'" # only install triton on x86_64 Linux
]