From d5d84c60cc94b40f681a4b56a4ebc63b01c047fc Mon Sep 17 00:00:00 2001 From: Matthew Feickert Date: Fri, 29 Mar 2024 00:39:13 -0500 Subject: [PATCH] Use 'installer uv' option for build --- .github/workflows/publish-package.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish-package.yml b/.github/workflows/publish-package.yml index d0396250bb..7b3093ebfb 100644 --- a/.github/workflows/publish-package.yml +++ b/.github/workflows/publish-package.yml @@ -51,12 +51,12 @@ jobs: - name: Build a sdist and wheel if: github.event_name != 'schedule' run: | - python -m build . + python -m build --installer uv . - name: Build a sdist and wheel and check for warnings if: github.event_name == 'schedule' run: | - PYTHONWARNINGS=error,default::DeprecationWarning python -m build . + PYTHONWARNINGS=error,default::DeprecationWarning build --installer uv -m build . - name: Verify untagged commits have dev versions if: "!startsWith(github.ref, 'refs/tags/')"