File tree Expand file tree Collapse file tree 2 files changed +29
-2
lines changed Expand file tree Collapse file tree 2 files changed +29
-2
lines changed Original file line number Diff line number Diff line change
1
+ name : Publish
2
+
3
+ on :
4
+ push :
5
+ tags :
6
+ - ' v*.*.*'
7
+ workflow_dispatch :
8
+
9
+ concurrency :
10
+ group : publish-${{ github.head_ref || github.run_id }}
11
+ cancel-in-progress : false
12
+
13
+ jobs :
14
+ publish :
15
+ runs-on : ubuntu-latest
16
+
17
+ steps :
18
+ - uses : actions/checkout@v4
19
+
20
+ - uses : astral-sh/setup-uv@v6
21
+ with :
22
+ python-version : 3.10
23
+
24
+ - name : Publish to PyPI
25
+ run : uv publish --frozen
26
+ env :
27
+ UV_PUBLISH_TOKEN : ${{ secrets.UV_PUBLISH_TOKEN }}
Original file line number Diff line number Diff line change 1
1
[project ]
2
2
name = " mcpauth"
3
- version = " 0.0 .0"
3
+ version = " 0.1.0-beta .0"
4
4
description = " Plug-and-play auth for Python MCP servers."
5
5
authors = [{
name =
" Silverhand Inc." ,
email =
" [email protected] " }]
6
6
readme = " README.md"
7
- requires-python = " >=3.10"
7
+ requires-python = " <4.0, >=3.10"
8
8
license = " MIT"
9
9
keywords = [
10
10
" authentication" ,
You can’t perform that action at this time.
0 commit comments