From 495e77462e8bc58ab677600cd1ba7003e2a940a7 Mon Sep 17 00:00:00 2001 From: Lev Vereshchagin Date: Thu, 26 Sep 2024 12:51:46 +0300 Subject: [PATCH] Use uv publish --- Justfile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Justfile b/Justfile index 18a674a..ade01a7 100644 --- a/Justfile +++ b/Justfile @@ -20,11 +20,9 @@ test *args: uv run pytest {{ args }} publish-package: - rm -rf dist/* + rm -rf dist uv build - uvx twine check dist/* - uvx twine upload dist/* --username __token__ --password $PYPI_TOKEN - + uv publish --token $PYPI_TOKEN install-ts: npm ci