Skip to content

Commit

Permalink
Merge pull request #168 from papr/patch-1
Browse files Browse the repository at this point in the history
Upgrade cibuildwheel to 2.16.0
  • Loading branch information
dimpase committed Sep 21, 2023
2 parents 90dc97c + 87c1fde commit beb2c5e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
16 changes: 9 additions & 7 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ on:
pull_request:
workflow_dispatch:

concurrency:
# Cancel previous runs of this workflow for the same branch
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
Expand All @@ -19,14 +24,11 @@ jobs:
# Used to host cibuildwheel
- uses: actions/setup-python@v2

- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.3.0

- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse
# to supply options, put them in 'env', like:
# env:
# CIBW_SOME_OPTION: value
uses: pypa/cibuildwheel@v2.16.0
env:
# on pp310: build/src/cysignals/implementation.c:231:9: error: implicit declaration of function 'PyPyErr_SetInterrupt' is invalid in C99 [-Werror,-Wimplicit-function-declaration]
CIBW_SKIP: "pp31*"

- uses: actions/upload-artifact@v2
with:
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
[build-system]
requires = ['setuptools', 'Cython>=0.28, <3']
build-backend = "setuptools.build_meta"

0 comments on commit beb2c5e

Please sign in to comment.