Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
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
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ keywords = ["benchmark", "llm-agents", "acp", "agent-evaluation", "multi-turn",
dependencies = [
"agent-client-protocol>=0.10",
"httpx>=0.27.0",
"anyio>=4.0",
# httpx-ws (transitive via the daytona SDK) needs anyio>=4.9 for
# AsyncContextManagerMixin; anyio 4.8 makes the daytona SDK un-importable.
"anyio>=4.9",

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

P1 AsyncContextManagerMixin was introduced in anyio 4.10.0, not 4.9. The official anyio changelog lists it under the 4.10.0 release. Setting the floor to anyio>=4.9 still allows a resolver to pick anyio==4.9.x, which would reproduce the exact AttributeError: module 'anyio' has no attribute 'AsyncContextManagerMixin' this PR is trying to prevent.

Suggested change
# httpx-ws (transitive via the daytona SDK) needs anyio>=4.9 for
# AsyncContextManagerMixin; anyio 4.8 makes the daytona SDK un-importable.
"anyio>=4.9",
# httpx-ws (transitive via the daytona SDK) needs anyio>=4.10 for
# AsyncContextManagerMixin (added in 4.10.0); anyio 4.8/4.9 makes the
# daytona SDK un-importable.
"anyio>=4.10",

"pydantic>=2.7",
"pyyaml>=6.0",
"rich>=13.0",
Expand Down
9 changes: 4 additions & 5 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.