Skip to content

Commit b68e46c

Browse files
Patrick Roebuckclaude
andcommitted
release: Version 2.0.10 - Fix CI test failures
Added mcp dependencies to CI workflow to fix test collection errors. Changes: - Updated .github/workflows/ci.yml to install mcp optional dependencies - This resolves ModuleNotFoundError when tests import from mcp_server.py All CI checks should now pass: ✓ Ruff linting ✓ Black formatting ✓ MyPy type checking ✓ Pytest test suite (with mcp module available) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent c953d74 commit b68e46c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Install dependencies
2828
run: |
2929
python -m pip install --upgrade pip
30-
pip install -e ".[dev,embeddings]"
30+
pip install -e ".[dev,embeddings,mcp]"
3131
3232
- name: Lint with ruff
3333
run: |

memdocs/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Generate machine-friendly docs from code changes without bureaucratic overhead.
55
"""
66

7-
__version__ = "2.0.9"
7+
__version__ = "2.0.10"
88
__author__ = "Patrick Roebuck"
99
__license__ = "Apache-2.0"
1010

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "memdocs"
7-
version = "2.0.9"
7+
version = "2.0.10"
88
description = "Persistent memory management for AI projects - Git-native documentation intelligence"
99
authors = [{name = "Patrick Roebuck", email = "[email protected]"}]
1010
license = {text = "Apache-2.0"}

0 commit comments

Comments
 (0)