We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 711a439 commit e3ddbc4Copy full SHA for e3ddbc4
1 file changed
.github/workflows/wheels.yml
@@ -4,12 +4,13 @@ on:
4
push:
5
branches:
6
- master
7
+ - wheels-*
8
tags:
9
- 'v*'
10
11
jobs:
12
build_wheels:
- name: Build wheels on ${{ matrix.os }}
13
+ name: Build wheels for ${{ matrix.name }}
14
runs-on: ${{ matrix.os }}
15
strategy:
16
matrix:
@@ -33,6 +34,11 @@ jobs:
33
34
35
- name: Build wheels
36
run: python -m cibuildwheel --output-dir wheelhouse
37
+ env:
38
+ CIBW_MANYLINUX_X86_64_IMAGE: "manylinux_2_28"
39
+ CIBW_MANYLINUX_AARCH64_IMAGE: "manylinux_2_28"
40
+ CIBW_MANYLINUX_PYPY_X86_64_IMAGE: "manylinux_2_28"
41
+ CIBW_MANYLINUX_PYPY_AARCH64_IMAGE: "manylinux_2_28"
42
43
- uses: actions/upload-artifact@v4
44
with:
0 commit comments