chore: update numpy dependency constraints for Python 3.13 compatibility (#1258)

* chore: update numpy dependency constraints for Python 3.13 compatibility

* bump: update version to 3.7.1
This commit is contained in:
Barabazs
2025-10-12 02:31:44 -06:00
committed by GitHub
parent a58ff9cb20
commit 895e5a8493
2 changed files with 135 additions and 29 deletions

View File

@@ -2,7 +2,7 @@
urls = { repository = "https://github.com/m-bain/whisperx" }
authors = [{ name = "Max Bain" }]
name = "whisperx"
version = "3.7.0"
version = "3.7.1"
description = "Time-Accurate Automatic Speech Recognition using Whisper."
readme = "README.md"
requires-python = ">=3.9, <3.14"
@@ -13,10 +13,11 @@ dependencies = [
"faster-whisper>=1.1.1",
"nltk>=3.9.1",
# Restrict numpy, onnxruntime, pandas, av to be compatible with Python 3.9
"numpy>=2.0.2,<2.1.0",
"numpy>=2.0.2,<2.1.0; python_version <'3.13'",
"onnxruntime>=1.19,<1.20.0; python_version <'3.10'",
"pandas>=2.2.3,<2.3.0",
"av<16.0.0",
"numpy>=2.1.0,<2.3.0; python_version >='3.13'",
"pyannote-audio>=3.3.2,<4.0.0",
"torch>=2.7.1",
"torchaudio",