Skip to content

Commit

Permalink
update cibuildwheel to 2.17 (#601)
Browse files Browse the repository at this point in the history
  • Loading branch information
methane authored May 4, 2024
1 parent b389ccf commit 526ec9c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 10 deletions.
1 change: 0 additions & 1 deletion .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: '3.x'
architecture: 'x64'
cache: "pip"
cache-dependency-path: |
requirements.txt
Expand Down
15 changes: 6 additions & 9 deletions .github/workflows/wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,29 +14,25 @@ jobs:
name: Build wheels on ${{ matrix.os }}

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Set up QEMU
if: runner.os == 'Linux'
uses: docker/setup-qemu-action@v3
with:
platforms: arm64
platforms: all

- name: Set up Python 3.x
uses: actions/setup-python@v5
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.x"
cache: "pip"

- name: Prepare
- name: Cythonize
shell: bash
run: |
pip install -r requirements.txt
make cython
- name: Build
uses: pypa/cibuildwheel@v2.16.5
uses: pypa/cibuildwheel@v2.17.0
env:
CIBW_TEST_REQUIRES: "pytest"
CIBW_TEST_COMMAND: "pytest {package}/test"
Expand All @@ -45,6 +41,7 @@ jobs:
CIBW_SKIP: pp*

- name: Build pure Python wheel
if: runner.os == 'Linux'
env:
MSGPACK_PUREPYTHON: "1"
run: |
Expand Down

0 comments on commit 526ec9c

Please sign in to comment.