Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
on:
push:
branches:
- main

pull_request:

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.10"

- run: pip install .
- run: pip install -U pytest trio
- run: pytest
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name = "mcp-python"
version = "0.1.3"
description = "Model Context Protocol implementation for Python"
readme = "README.md"
requires-python = ">=3.8"
requires-python = ">=3.10"
dependencies = [
"anyio",
"httpx",
Expand Down
2 changes: 1 addition & 1 deletion tests/server/test_session.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ async def run_server():
tg.start_soon(run_server)

await client_session.initialize()
except* anyio.ClosedResourceError:
except anyio.ClosedResourceError:
pass

assert received_initialized