Skip to content

Commit 212af45

Browse files
authored
Merge pull request #319 from tisnik/lcore-446-use-uv-tool-to-build-and-upload-archives
LCORE-446: Use uv tool to build and upload distribution archives
2 parents 485affb + b362027 commit 212af45

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,10 +81,10 @@ verify: ## Run all linters
8181

8282
distribution-archives: ## Generate distribution archives to be uploaded into Python registry
8383
rm -rf dist
84-
pdm run python -m build
84+
uv run python -m build
8585

8686
upload-distribution-archives: ## Upload distribution archives into Python registry
87-
pdm run python -m twine upload --repository ${PYTHON_REGISTRY} dist/*
87+
uv run python -m twine upload --repository ${PYTHON_REGISTRY} dist/*
8888

8989
help: ## Show this help screen
9090
@echo 'Usage: make <OPTIONS> ... <TARGETS>'

0 commit comments

Comments
 (0)