We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25bdd12 commit 5a1e248Copy full SHA for 5a1e248
.github/workflows/ci.yml
@@ -22,7 +22,7 @@ jobs:
22
- run: uv sync --dev
23
- run: uv run make lint
24
- run: uv run make benchmark
25
- - run: uv run make build
+ - run: make build
26
- uses: actions/setup-node@v4
27
with:
28
node-version-file: ".nvmrc"
Makefile
@@ -46,7 +46,7 @@ clean-pyc: ## Remove Python file artifacts.
46
47
build: ## Builds package for publication.
48
rm -f dist/*
49
- python -X dev -W error -m build
+ uv build
50
51
publish: build ## Publishes a new version to PyPI.
52
- twine upload dist/*
+ uv publish
0 commit comments