We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4faf503 commit 99c695eCopy full SHA for 99c695e
1 file changed
.github/workflows/build_secondary_wheels.yml
@@ -14,12 +14,6 @@ jobs:
14
name: >
15
Build secondary wheels for py ${{ matrix.py }},
16
os ${{ matrix.cbw_os }}, arch ${{ matrix.arch }}
17
- if: >
18
- ${{
19
- (matrix.cbw_os == 'manylinux_' && matrix.arch != 'x86_64')
20
- && (matrix.cbw_os == 'win_' && matrix.arch == 'arm64')
21
- && (matrix.cbw_os == 'win32' && matrix.arch == '')
22
- }}
23
runs-on: ${{ matrix.os }}
24
strategy:
25
matrix:
@@ -37,6 +31,13 @@ jobs:
37
31
- os: macos-latest
38
32
cbw_os: macosx_
39
33
arch: [x86_64, arm64, universal2]
34
+ exclude:
35
+ - cbw_os: manylinux_
36
+ arch: x86_64
+ - cbw_os: win_
+ arch: [amd64, ""]
+ - cbw_os: win32
40
+ arch: [amd64, arm64]
41
42
steps:
43
- uses: actions/checkout@v3
0 commit comments