We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c0bb76 commit 861998bCopy full SHA for 861998b
.github/workflows/build.yml
@@ -48,15 +48,7 @@ jobs:
48
needs: [build_data]
49
strategy:
50
matrix:
51
- include:
52
- - os: ubuntu-22.04
53
- arch: x86_64
54
- - os: windows-2019
55
56
- - os: macos-13
57
58
- - os: macos-14
59
- arch: arm64
+ os: [ubuntu-22.04, windows-2019, macos-13, macos-14]
60
runs-on: ${{ matrix.os }}
61
steps:
62
- uses: actions/checkout@v4
@@ -78,7 +70,7 @@ jobs:
78
70
env:
79
71
CIBW_BUILD_VERBOSITY: 1
80
72
CIBW_BUILD: "cp39* cp310* cp311* cp312* cp313*"
81
- CIBW_ARCHS_MACOS: ${{ matrix.arch }}
73
+ CIBW_ARCHS: "native"
82
74
CIBW_SKIP: "pp* *-musllinux_* *-win32 *-manylinux_i686 *-musllinux_i686 *-linux_aarch64 *-linux_armv7l"
83
75
CIBW_BEFORE_ALL: "python {project}/.github/workflows/run_before_all.py"
84
76
CIBW_TEST_EXTRAS: "test"
0 commit comments