Skip to content

Commit

Permalink
wheels
Browse files Browse the repository at this point in the history
  • Loading branch information
gplepage committed Dec 7, 2024
1 parent d78a2c1 commit 7bc4ecd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: Build wheels
# see https://github.com/pypa/cibuildwheel

on: [workflow_dispatch]

Expand All @@ -19,21 +20,20 @@ jobs:
- uses: actions/setup-python@v5

- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.16.2
run: python -m pip install cibuildwheel==2.18.1

- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse
# to supply options, put them in 'env', like:
env:
CIBW_SKIP: pp* cp36-* cp37-* cp38-*
# CIBW_SKIP: pp* cp36-* cp37-* cp38-* cp39-musllinux*
CIBW_SKIP: pp* cp36-* cp37-* cp38-* cp39-musllinux*
CIBW_ARCHS_MACOS: x86_64 arm64
CIBW_ARCHS_WINDOWS: auto64
CIBW_ARCHS_LINUX: auto64
# CIBW_ARCHS_LINUX: x86_64 aarch64
CIBW_TEST_REQUIRES: pytest
CIBW_TEST_COMMAND: "pytest {project}/tests"
CIBW_TEST_SKIP: "*_arm64 *_universal2:arm64"
# CIBW_TEST_SKIP: "*_arm64 *_universal2:arm64"

- uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit 7bc4ecd

Please sign in to comment.