diff --git a/.github/workflows/wheels.yaml b/.github/workflows/wheels.yaml index 909fc2f..aa38ca8 100644 --- a/.github/workflows/wheels.yaml +++ b/.github/workflows/wheels.yaml @@ -13,6 +13,7 @@ jobs: steps: - uses: actions/checkout@v4 with: + fetch-depth: 0 fetch-tags: true - uses: actions/setup-python@v4 @@ -26,7 +27,8 @@ jobs: # only build cpython CIBW_BUILD: "cp*" # but not 3.12 as numpy is not yet released with 3.12 support - CIBW_SKIP: "cp312-*" + # also exclude 32 bit and musl architectures to reduce build time for now + CIBW_SKIP: "cp312-* *-win32 *-manylinux_i686 *musllinux*" - uses: actions/upload-artifact@v3 with: