From bcdc5935d90cbc45e8f6f9cdd42517797e898aa8 Mon Sep 17 00:00:00 2001 From: Christine Wang Date: Tue, 4 Feb 2025 21:27:08 -0800 Subject: [PATCH 1/3] remove keyring-provider --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7fe537287..fc03da445 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,4 +1,4 @@ -name: Upload Python Package +name: Release on: push: @@ -76,7 +76,7 @@ jobs: run: | export UV_PUBLISH_PASSWORD="${{ secrets.PYPI_TOKEN }}" export UV_PUBLISH_USERNAME="__token__" - uv publish --publish-url https://upload.pypi.org/legacy/ --keyring-provider disabled + uv publish --publish-url https://upload.pypi.org/legacy/ - name: Make github release uses: softprops/action-gh-release@v2 From c1b195f05cda332ed4387907b06abe031e694fca Mon Sep 17 00:00:00 2001 From: Christine Wang Date: Tue, 4 Feb 2025 22:23:22 -0800 Subject: [PATCH 2/3] remove uv command --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index fc03da445..2a171ede2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -44,8 +44,8 @@ jobs: git fetch --depth=1 origin +refs/tags/*:refs/tags/* # TODO: add cbuildwheel cache - - name: Build release distributions - run: uv build --wheel + - name: Build wheels + uses: pypa/cibuildwheel@v2.22.0 env: HATCH_BUILD_HOOKS_ENABLE: true From 74e9b1239a92ea313630be1892fe0ad54286a328 Mon Sep 17 00:00:00 2001 From: Christine Wang Date: Wed, 5 Feb 2025 07:10:26 -0800 Subject: [PATCH 3/3] skip 3.13 --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2a171ede2..b44033d21 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -43,11 +43,11 @@ jobs: git branch git fetch --depth=1 origin +refs/tags/*:refs/tags/* - # TODO: add cbuildwheel cache - name: Build wheels uses: pypa/cibuildwheel@v2.22.0 env: HATCH_BUILD_HOOKS_ENABLE: true + CIBW_SKIP: cp313-macosx_* - uses: actions/upload-artifact@v4 with: