Skip to content

Commit 2c1aa36

Browse files
committed
chore(deps): bump fastmcp-slim, redis and dev tooling to latest patches
- fastmcp-slim 3.4.2 -> 3.4.4, redis 8.0.0 -> 8.0.1 (mcp 1.28.1 transitively) - dev: pyright 1.1.411, pytest 9.1.1, ruff 0.15.21, uv 0.11.28 - drop removed ANN101/ANN102 codes from the ruff ignore list All patch-level with no code changes. ruff and pyright clean, 64 tests pass, server boots and registers all 24 tools.
1 parent dd47c64 commit 2c1aa36

2 files changed

Lines changed: 513 additions & 489 deletions

File tree

pyproject.toml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ classifiers = [
2222
"Typing :: Typed",
2323
]
2424
dependencies = [
25-
"fastmcp-slim[server,apps,tasks]>=3.4.2",
25+
"fastmcp-slim[server,apps,tasks]>=3.4.4",
2626
"httpx>=0.28.1",
27-
"redis>=8.0.0",
27+
"redis>=8.0.1",
2828
]
2929

3030
[project.scripts]
@@ -63,10 +63,10 @@ metadata = false
6363

6464
[dependency-groups]
6565
dev = [
66-
"pyright>=1.1.410",
67-
"pytest>=9.1.0",
68-
"ruff>=0.15.17",
69-
"uv>=0.11.21",
66+
"pyright>=1.1.411",
67+
"pytest>=9.1.1",
68+
"ruff>=0.15.21",
69+
"uv>=0.11.28",
7070
]
7171

7272
[tool.ruff]
@@ -75,8 +75,6 @@ line-length = 120
7575
[tool.ruff.lint]
7676
select = ["D", "PLR", "E", "F", "I", "N", "W", "ANN", "ASYNC", "B", "C4", "DTZ", "ICN", "PIE", "RET", "SLF", "T20", "UP", "YTT"]
7777
ignore = [
78-
"ANN101", # Missing type annotation for self in method
79-
"ANN102", # Missing type annotation for cls in classmethod
8078
"ANN202", # Missing return type annotation for private function
8179
"ANN204", # Missing return type annotation for special method __init__
8280
"ANN401", # Dynamically typed expressions (typing.Any) are disallowed

0 commit comments

Comments
 (0)