Skip to content

Commit 947ddff

Browse files
committed
Fix pyproject.toml
1 parent 26b0458 commit 947ddff

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

pyproject.toml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ nats-py = "2.9.0"
2828
textual = "0.85.1"
2929
requests = "2.32.3"
3030
pygtrie = "2.5.0"
31-
httpx = "0.27.2"
31+
httpx = ">=0.28.0"
3232
h2 = "4.1.0"
3333
httpx-sse = "0.4.0"
3434
blinker = "1.9.0"
@@ -38,8 +38,15 @@ litellm = "1.60.4"
3838
mcp = ">=1.8.0"
3939
jinja2 = "3.1.5"
4040

41+
# A list of optional dependencies, which are included in the
42+
# below `extras`.
43+
a2a-sdk = { version = ">=0.2.10", optional = true }
44+
starlette = { version = ">=0.47.0", optional = true }
45+
sse-starlette = { version = ">=2.3.6", optional = true }
46+
47+
# Per https://python-poetry.org/docs/pyproject/#extras.
4148
[tool.poetry.extras]
42-
a2a = ["a2a-sdk>=0.2.10", "starlette>=0.47.0", "sse-starlette>=2.3.6"]
49+
a2a = ["a2a-sdk", "starlette", "sse-starlette"]
4350

4451
[tool.pyright]
4552
# https://github.com/microsoft/pyright/blob/main/docs/configuration.md

0 commit comments

Comments
 (0)