From e91d83b171930e89e24070cd62b473db707ba5dc Mon Sep 17 00:00:00 2001 From: eureka928 Date: Mon, 2 Feb 2026 04:05:40 +0100 Subject: [PATCH] fix(whisperx): pin torch CPU variant to fix uv resolution failure Pin torch==2.8.0+cpu so uv resolves the CPU wheel from the extra index instead of picking torch==2.8.0+cu128 from PyPI, which pulls unresolvable CUDA dependencies. Signed-off-by: eureka928 --- backend/python/whisperx/requirements-cpu.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/python/whisperx/requirements-cpu.txt b/backend/python/whisperx/requirements-cpu.txt index e6c9e71c3..b11993a0b 100644 --- a/backend/python/whisperx/requirements-cpu.txt +++ b/backend/python/whisperx/requirements-cpu.txt @@ -1,3 +1,3 @@ --extra-index-url https://download.pytorch.org/whl/cpu -torch +torch==2.8.0+cpu whisperx @ git+https://github.com/m-bain/whisperX.git