Skip to content

Commit 8fbc82e

Browse files
committed
fix(hanzo-mcp): update fallback version to 0.14.0, add watchdog to dev deps
- server.py: fallback version 0.12.5 → 0.14.0 (matches pyproject.toml) - pyproject.toml: add watchdog>=3.0.0 to dev extras (required by dev_server.py)
1 parent 803c39a commit 8fbc82e

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

pkg/hanzo-mcp/hanzo_mcp/server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ def __init__(
171171

172172
self.mcp._mcp_server.version = pkg_version("hanzo-mcp")
173173
except Exception:
174-
self.mcp._mcp_server.version = "0.12.5"
174+
self.mcp._mcp_server.version = "0.14.0"
175175

176176
# Initialize authentication token — check env, then ~/.hanzo/mcp_token
177177
self.auth_token = auth_token or os.environ.get("HANZO_MCP_TOKEN")

pkg/hanzo-mcp/pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@ interactive = [
101101

102102
# Development
103103
dev = [
104+
"watchdog>=3.0.0",
104105
"pytest>=7.0.0",
105106
"pytest-cov>=4.1.0",
106107
"ruff>=0.14.0",

0 commit comments

Comments
 (0)