Skip to content

Commit 4613c5c

Browse files
committed
chore(deps): require whisper-s2t-reborn>=1.6.3 for cuDNN-free ctranslate2
whisper-s2t-reborn 1.6.3 relaxes its ctranslate2 pin to >=4.6.2,<5, so the lock now resolves ctranslate2 to 4.8.0, which no longer loads cuDNN by default (matching the LD_LIBRARY_PATH note). ctranslate2 4.6.2 remains technically compatible if a user pins it explicitly. Bump the dependency lower bound and the import-error install hint, and re-lock (whisper-s2t-reborn 1.6.3, ctranslate2 4.8.0). Signed-off-by: BBC, Esquire <bbc@chintellalaw.com>
1 parent 0afcac9 commit 4613c5c

3 files changed

Lines changed: 37 additions & 37 deletions

File tree

docling/pipeline/asr_pipeline.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -437,7 +437,7 @@ def __init__(
437437
except ImportError:
438438
raise ImportError(
439439
"whisper_s2t is not installed. Please install it via "
440-
"`pip install 'whisper-s2t-reborn[pyav]>=1.6.2'`."
440+
"`pip install 'whisper-s2t-reborn[pyav]>=1.6.3'`."
441441
)
442442

443443
self.whisper_s2t = whisper_s2t

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ format-audio = [
162162
'mlx-whisper>=0.4.3 ; python_version >= "3.10" and sys_platform == "darwin" and platform_machine == "arm64"',
163163
'openai-whisper>=20250625',
164164
'numba>=0.63.0',
165-
'whisper-s2t-reborn>=1.6.2,<2 ; sys_platform != "darwin" or platform_machine != "arm64"',
165+
'whisper-s2t-reborn>=1.6.3,<2 ; sys_platform != "darwin" or platform_machine != "arm64"',
166166
]
167167

168168
# ============================================================================

0 commit comments

Comments
 (0)