Skip to content

Commit 92227e7

Browse files
authored
fix: lock down torch and torchaudio versions (#1265)
* fix: update torch and torchaudio dependencies to use compatible version specifiers * chore: update version to 3.7.3
1 parent 0fa81b3 commit 92227e7

File tree

2 files changed

+176
-196
lines changed

2 files changed

+176
-196
lines changed

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
urls = { repository = "https://github.com/m-bain/whisperx" }
33
authors = [{ name = "Max Bain" }]
44
name = "whisperx"
5-
version = "3.7.2"
5+
version = "3.7.3"
66
description = "Time-Accurate Automatic Speech Recognition using Whisper."
77
readme = "README.md"
88
requires-python = ">=3.9, <3.14"
@@ -19,8 +19,8 @@ dependencies = [
1919
"av<16.0.0",
2020
"numpy>=2.1.0,<2.3.0; python_version >='3.13'",
2121
"pyannote-audio>=3.3.2,<4.0.0",
22-
"torch>=2.7.1",
23-
"torchaudio",
22+
"torch~=2.7.1",
23+
"torchaudio~=2.7.1",
2424
"transformers>=4.48.0",
2525
"triton>=3.3.0; sys_platform == 'linux' and platform_machine == 'x86_64'" # only install triton on x86_64 Linux
2626
]

0 commit comments

Comments
 (0)