Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion envs/textarena_env/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ dependencies = [
"textarena>=0.6.1",
"nltk>=3.9.3",
# For custom Gradio tab (server/gradio_ui.py) when ENABLE_WEB_INTERFACE=true
"gradio>=4.0.0",
"gradio>=6.15.1",

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Direct-dep floor bump is correct — gradio is a real dependency here (server/gradio_ui.py, the ENABLE_WEB_INTERFACE tab). dependabot also synced the matching requires-dist in uv.lock (line 1655), and the resolved gradio 6.15.1 satisfies >=6.15.1; uv lock --check passes (126 pkgs).

Raising the floor from >=4.0.0 is well justified on security grounds: it clears CVE-2026-48545 (fixed 6.15.0) and CVE-2026-10783 (fixed 6.15.1). Non-blocking FYI: 6.15.1 still carries CVE-2026-49119 (fixed only in 6.16.0), so this floor isn't fully clean — a later bump to >=6.16.0 would close it.

]

[project.optional-dependencies]
Expand Down
Loading
Loading