Skip to content

Commit 6d68050

Browse files
committed
Use uv for building and uploading instead of setup.py
1 parent 93260c5 commit 6d68050

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,9 @@ tag:
4848
pypi: tag
4949
@if python3 python3 -c "from trio_asyncio._version import __version__; print(__version__)" 2>/dev/null | grep -qs + >/dev/null 2>&1 ; \
5050
then echo "You need a clean, tagged tree" >&2; exit 1 ; fi
51-
python3 setup.py sdist upload
51+
python3 -m pip install uv
52+
uv build
53+
uv publish
5254
## version depends on tag, so re-tagging doesn't make sense
5355

5456
upload: pypi

0 commit comments

Comments
 (0)