Skip to content

Commit 376deee

Browse files
committed
Fix missing PyYAML dependency (v0.2.3)
- Add PyYAML>=6.0 to requirements.txt - This fixes ModuleNotFoundError when running the server
1 parent ea0bd70 commit 376deee

4 files changed

Lines changed: 4 additions & 3 deletions

File tree

docsetmcp/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""DocsetMCP - Extract documentation from Dash docsets as Markdown through MCP"""
22

3-
__version__ = "0.2.2"
3+
__version__ = "0.2.3"
44
__author__ = "Cody Bromley"
55
__email__ = "dev@codybrom.com"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "docsetmcp",
3-
"version": "0.2.2",
3+
"version": "0.2.3",
44
"description": "Model Context Protocol server for Dash-style docsets",
55
"scripts": {
66
"setup": "./scripts/setup_env.sh",

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
mcp>=1.9.4
22
Brotli>=1.1.0
3+
PyYAML>=6.0

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
setup(
1414
name="docsetmcp",
15-
version="0.2.2",
15+
version="0.2.3",
1616
author="Cody Bromley",
1717
author_email="dev@codybrom.com",
1818
description="Search local documentation from Dash through MCP",

0 commit comments

Comments
 (0)