We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d15ad4 commit 40f04d2Copy full SHA for 40f04d2
.github/workflows/build.yml
@@ -17,7 +17,7 @@ env:
17
18
jobs:
19
build_wheels:
20
- name: Build wheels on ${{ matrix.os }} for ${{ matrix.arch }} - ${{ matrix.p_ver }}
+ name: Build wheels on ${{ matrix.os }} for ${{ matrix.arch }} - ${{ matrix.cibw_build }}
21
runs-on: ${{ matrix.os }}
22
permissions:
23
contents: write
@@ -27,6 +27,7 @@ jobs:
27
CIBW_ARCHS_MACOS: "x86_64 arm64"
28
CIBW_ENABLE: cpython-freethreading
29
strategy:
30
+ fail-fast: false
31
matrix:
32
os: [ubuntu-latest, windows-latest, macos-latest]
33
arch: [x86_64, aarch64]
@@ -56,6 +57,7 @@ jobs:
56
57
name: Set up QEMU
58
59
- name: Setup free-threading variables
60
+ if: ${{ endsWith(matrix.cibw_build, 't-*') }}
61
shell: bash -l {0}
62
run: |
63
echo "CIBW_BEFORE_BUILD=pip install setuptools numpy" >> "$GITHUB_ENV"
0 commit comments