We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ab13dd commit 4c8e1d2Copy full SHA for 4c8e1d2
.github/workflows/mcp-compatibility.yml
@@ -67,10 +67,14 @@ jobs:
67
with:
68
python-version: '3.12'
69
70
+ - name: Update pyproject.toml with MCP ${{ matrix.mcp-version }}
71
+ run: |
72
+ # Update the MCP version in pyproject.toml
73
+ sed -i 's/mcp==.*/mcp==${{ matrix.mcp-version }}"/' pyproject.toml
74
+
75
- name: Install dependencies with MCP ${{ matrix.mcp-version }}
76
run: |
77
uv sync --extra dev
- uv pip install mcp==${{ matrix.mcp-version }}
78
79
- name: Run full test suite with MCP ${{ matrix.mcp-version }}
80
pyproject.toml
@@ -20,7 +20,7 @@ classifiers = [
20
21
dependencies = [
22
"datafog>=4.1.1",
23
- "mcp>=1.0.0",
+ "mcp==1.9.2",
24
"pydantic>=2.0.0",
25
]
26
0 commit comments