Skip to content

Commit 526ec9c

Browse files
authored
update cibuildwheel to 2.17 (#601)
1 parent b389ccf commit 526ec9c

File tree

2 files changed

+6
-10
lines changed

2 files changed

+6
-10
lines changed

.github/workflows/docs.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ jobs:
1717
uses: actions/setup-python@v5
1818
with:
1919
python-version: '3.x'
20-
architecture: 'x64'
2120
cache: "pip"
2221
cache-dependency-path: |
2322
requirements.txt

.github/workflows/wheel.yml

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,29 +14,25 @@ jobs:
1414
name: Build wheels on ${{ matrix.os }}
1515

1616
steps:
17-
- name: Checkout
18-
uses: actions/checkout@v4
19-
2017
- name: Set up QEMU
2118
if: runner.os == 'Linux'
2219
uses: docker/setup-qemu-action@v3
2320
with:
24-
platforms: arm64
21+
platforms: all
2522

26-
- name: Set up Python 3.x
27-
uses: actions/setup-python@v5
23+
- uses: actions/checkout@v4
24+
- uses: actions/setup-python@v5
2825
with:
2926
python-version: "3.x"
3027
cache: "pip"
31-
32-
- name: Prepare
28+
- name: Cythonize
3329
shell: bash
3430
run: |
3531
pip install -r requirements.txt
3632
make cython
3733
3834
- name: Build
39-
uses: pypa/cibuildwheel@v2.16.5
35+
uses: pypa/cibuildwheel@v2.17.0
4036
env:
4137
CIBW_TEST_REQUIRES: "pytest"
4238
CIBW_TEST_COMMAND: "pytest {package}/test"
@@ -45,6 +41,7 @@ jobs:
4541
CIBW_SKIP: pp*
4642

4743
- name: Build pure Python wheel
44+
if: runner.os == 'Linux'
4845
env:
4946
MSGPACK_PUREPYTHON: "1"
5047
run: |

0 commit comments

Comments
 (0)