From de1122442b5e7cbb1fffe809c419e60be5be79e6 Mon Sep 17 00:00:00 2001 From: bronsen Date: Thu, 19 Feb 2026 23:08:00 +0100 Subject: [PATCH] just: invoke uv when possible --- justfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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