Skip to content

Commit a000923

Browse files
authored
fix: filter out *-linux_x86_64.whl (#153)
Signed-off-by: Rui Dias Gomes <[email protected]>
1 parent c2c911d commit a000923

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/wheels.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ jobs:
206206
CIBW_BUILD: ${{ env.python_cp_version }}-${{ matrix.os.platform_id }}
207207
CIBW_ARCHS: auto x86_64 aarch64
208208
CIBW_PLATFORM: linux
209-
CIBW_SKIP: "pp* *musllinux_* *_i686* *_s390* *pypy* *-linux_x86_64"
209+
CIBW_SKIP: "pp* *musllinux_* *_i686* *_s390* *pypy*"
210210
CIBW_PROJECT_REQUIRES_PYTHON: "~=${{ matrix.python-version }}.0"
211211
CIBW_BUILD_VERBOSITY: 3
212212
BUILD_THREADS: "8"
@@ -332,6 +332,12 @@ jobs:
332332
- name: List dist/
333333
run: |
334334
ls ./dist
335+
- name: Remove non-manylinux Linux wheels if found
336+
run: |
337+
rm -f ./dist/*-linux_x86_64.whl
338+
- name: List dist/
339+
run: |
340+
ls ./dist
335341
- name: Sign the dists with Sigstore
336342
uses: sigstore/[email protected]
337343
with:

0 commit comments

Comments
 (0)