Skip to content
Merged
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
14 changes: 7 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["setuptools>=82.0.1"]
requires = ["setuptools>=83.0.0"]
build-backend = "setuptools.build_meta"

[project]
Expand Down Expand Up @@ -30,8 +30,8 @@ dependencies = [
"rich>=15.0.0",
"prompt_toolkit>=3.0.52",
"httpx>=0.28.1",
"fastapi>=0.137.2",
"uvicorn>=0.49.0",
"fastapi>=0.139.0",
"uvicorn>=0.51.0",
"python-multipart>=0.0.32",
"jinja2>=3.1.6",
# v2 / Milestone 2c: Ed25519 signatures for lineage_share grants.
Expand All @@ -41,23 +41,23 @@ dependencies = [

[project.optional-dependencies]
dev = [
"pytest>=9.1.0",
"pytest>=9.1.1",
"pytest-cov",
"ruff",
"mypy",
"types-PyYAML",
]
test = [
"pytest>=9.1.0",
"pytest>=9.1.1",
"pytest-cov",
# tests/test_chat_loop.py uses async def + @pytest.mark.asyncio.
# Required in CI; locally most devs have it system-wide.
"pytest-asyncio>=1.4.0",
# CI exercises the MCP catalog/server as a first-class AgentDrive surface.
"mcp>=1.28.0",
"mcp>=1.28.1",
]
mcp = [
"mcp>=1.28.0",
"mcp>=1.28.1",
]

[project.scripts]
Expand Down
Loading