diff --git a/justfile b/justfile index 6e696fc..9aec35a 100644 --- a/justfile +++ b/justfile @@ -15,7 +15,7 @@ build: # upload to Package Registry upload: build - python -m twine upload --repository code.cbo --config-file ~/.config/pypirc dist/*.whl + uv run twine upload --repository code.cbo --config-file ~/.config/pypirc dist/*.whl # console to observe log messages console: @@ -51,7 +51,7 @@ coverage: lint: uv run ruff check . markdownlint-cli2 . - twine check --strict dist/* + uv run twine check --strict dist/* # pretend we are CI ci: lint