From 761643b1ff9c6b0ac846098c6fb6f4f50112db37 Mon Sep 17 00:00:00 2001 From: will422-l Date: Fri, 17 Apr 2026 09:11:15 +0800 Subject: [PATCH] fix: cap Gradio version to <6.11 to prevent UI freeze Gradio 6.11.0 has a bug in gr.Tabs that causes the UI to completely freeze when switching tabs. This caps the version to prevent users from hitting this issue until Gradio fixes it upstream. Ref: #1289 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 9fc947a97..93775b402 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,7 +20,7 @@ dependencies = [ "click", "datasets", "ema_pytorch>=0.5.2", - "gradio>=6.0.0", + "gradio>=6.0.0,<6.11", "hydra-core>=1.3.0", "librosa", "matplotlib",