From 39bb743ce525d37ff716099a842c1de0d162efc4 Mon Sep 17 00:00:00 2001 From: Arunanshu Biswas Date: Sun, 25 Aug 2024 01:45:26 +0530 Subject: [PATCH 1/2] ci(workflows): use `build` and `uv` in cibuildwheel --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2d4eefa..51ceb68 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -91,6 +91,8 @@ jobs: - name: Build wheels 🛞 uses: pypa/cibuildwheel@v2.20.0 + env: + CIBW_BUILD_FRONTEND: build[uv] - name: Upload wheel artifacts 🫖 uses: actions/upload-artifact@v4 From 90d3959baf232f67ca905f9d5c7ee2146c40f160 Mon Sep 17 00:00:00 2001 From: Arunanshu Biswas Date: Sun, 25 Aug 2024 10:20:53 +0530 Subject: [PATCH 2/2] ci(workflows): install uv using pipx --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 51ceb68..8834d24 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -89,6 +89,9 @@ jobs: parallel: true flag-name: run-${{ matrix.os }}-python-${{ matrix.python-version }} + - name: Install uv installer 🌞 + run: pipx install uv + - name: Build wheels 🛞 uses: pypa/cibuildwheel@v2.20.0 env: