From 54389b6334e5e6f8b5f301b3599d7cf2b94d2931 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Szymon=20=C5=81opaciuk?= Date: Thu, 16 Jan 2025 16:31:19 +0100 Subject: [PATCH] Build Xdeps wheels for different platforms in parallel --- .github/workflows/deploy.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index bf48ebc..ee5e5dd 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -12,6 +12,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-13, macos-14] + pyver: [cp38, cp39, cp310, cp311, cp312, cp313] steps: - uses: actions/checkout@v4 @@ -24,6 +25,7 @@ jobs: - name: Build wheels run: python -m cibuildwheel --output-dir wheelhouse env: + CIBW_BUILD: ${{ matrix.pyver }}-* CIBW_PROJECT_REQUIRES_PYTHON: ">=3.8" - uses: actions/upload-artifact@v4