File tree 3 files changed +22
-2
lines changed
3 files changed +22
-2
lines changed Original file line number Diff line number Diff line change
1
+ on :
2
+ push :
3
+ branches :
4
+ - main
5
+
6
+ pull_request :
7
+
8
+ jobs :
9
+ build :
10
+ runs-on : ubuntu-latest
11
+
12
+ steps :
13
+ - uses : actions/checkout@v4
14
+ - uses : actions/setup-python@v5
15
+ with :
16
+ python-version : " 3.10"
17
+
18
+ - run : pip install .
19
+ - run : pip install -U pytest trio
20
+ - run : pytest
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ name = "mcp-python"
7
7
version = " 0.1.3"
8
8
description = " Model Context Protocol implementation for Python"
9
9
readme = " README.md"
10
- requires-python = " >=3.8 "
10
+ requires-python = " >=3.10 "
11
11
dependencies = [
12
12
" anyio" ,
13
13
" httpx" ,
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ async def run_server():
53
53
tg .start_soon (run_server )
54
54
55
55
await client_session .initialize ()
56
- except* anyio .ClosedResourceError :
56
+ except anyio .ClosedResourceError :
57
57
pass
58
58
59
59
assert received_initialized
You can’t perform that action at this time.
0 commit comments