fix(deps): update benchmark dependency bounds
Some checks failed
CI / Python ${{ matrix.python-version }} test suite (3.11) (push) Has been cancelled
CI / Python ${{ matrix.python-version }} test suite (3.12) (push) Has been cancelled
Sync main to HF Space / mirror (push) Has been cancelled

This commit is contained in:
Vincent Koc 2026-04-30 15:14:54 -07:00
parent 01dd96c71c
commit 4e6a686ae5
No known key found for this signature in database

View File

@ -10,7 +10,8 @@ dependencies = [
"pydantic>=2.7,<3",
"pyyaml>=6.0,<7",
"datasets>=3.0,<4",
"gradio>=5.0,<6",
"gradio>=6.7.0,<7",
"pillow>=12.2.0,<13",
"httpx>=0.27,<1",
"numpy>=1.26,<3",
"rich>=13.0,<14",
@ -18,8 +19,8 @@ dependencies = [
# Runtime deps for the task completion verifier. The harness shells out
# to `pytest -q` / `pytest-asyncio` inside per-task workspaces as the
# execution check; the container must have them in PATH.
"pytest>=8.0,<9",
"pytest-asyncio>=0.24,<1",
"pytest>=9.0.3,<10",
"pytest-asyncio>=1,<2",
]
[project.optional-dependencies]
@ -27,8 +28,8 @@ dev = [
# Kept as an alias for historical `pip install .[dev]` invocations.
# pytest + pytest-asyncio are now in the base [dependencies] since the
# benchmark itself runs pytest in task workspaces.
"pytest>=8.0,<9",
"pytest-asyncio>=0.24,<1",
"pytest>=9.0.3,<10",
"pytest-asyncio>=1,<2",
"pre-commit>=4.0,<5",
"ruff>=0.9,<1",
]