From db1750fa4896f056fb528f7baf995df98f3da189 Mon Sep 17 00:00:00 2001 From: Barabazs <31799121+Barabazs@users.noreply.github.com> Date: Thu, 10 Apr 2025 09:23:11 +0200 Subject: [PATCH] chore: update ctranslate2 version requirement to >=4.5.0 --- requirements.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index e3bdecf..bd263ac 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,7 @@ torch>=2 torchaudio>=2 faster-whisper==1.1.0 -ctranslate2<4.5.0 +ctranslate2>=4.5.0 transformers pandas setuptools>=65 diff --git a/setup.py b/setup.py index 13759a6..93694ed 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ with open("README.md", "r", encoding="utf-8") as f: setup( name="whisperx", py_modules=["whisperx"], - version="3.3.1", + version="3.3.2", description="Time-Accurate Automatic Speech Recognition using Whisper.", long_description=long_description, long_description_content_type="text/markdown",