Skip to content

Commit 5a1e248

Browse files
committed
Finish conversion to uv build backend
1 parent 25bdd12 commit 5a1e248

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- run: uv sync --dev
2323
- run: uv run make lint
2424
- run: uv run make benchmark
25-
- run: uv run make build
25+
- run: make build
2626
- uses: actions/setup-node@v4
2727
with:
2828
node-version-file: ".nvmrc"

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ clean-pyc: ## Remove Python file artifacts.
4646

4747
build: ## Builds package for publication.
4848
rm -f dist/*
49-
python -X dev -W error -m build
49+
uv build
5050

5151
publish: build ## Publishes a new version to PyPI.
52-
twine upload dist/*
52+
uv publish

0 commit comments

Comments
 (0)