From e8e8943692d82d1fa9d331140830dc85ea2b74b6 Mon Sep 17 00:00:00 2001 From: Ethanfel Date: Sun, 5 Apr 2026 17:36:06 +0200 Subject: [PATCH] Remove transformers upper bound cap from install.py MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The cap was wrong — it would downgrade transformers in shared venvs and break other nodes. The torchcodec issue is handled in code now. Co-Authored-By: Claude Sonnet 4.6 --- install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.py b/install.py index 5d22e65..51f10b3 100644 --- a/install.py +++ b/install.py @@ -20,7 +20,7 @@ pip("omnivoice", "--no-deps") # Install omnivoice's runtime inference dependencies (excludes torch, torchaudio, # gradio, tensorboardX, webdataset which are training/demo-only tools). pip( - "transformers>=4.40.0,<5.0.0", + "transformers>=4.40.0", "accelerate", "pydub", "soundfile",