Skip to content

Commit

Permalink
Merge pull request #1622 from minrk/musl
Browse files Browse the repository at this point in the history
bump cibuildwheel to 2.2.2 for musllinux wheels
  • Loading branch information
minrk authored Nov 1, 2021
2 parents 8700531 + 5f251c7 commit 4b8f43c
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:

env:
cython: "0.29.24"
cibuildwheel: "2.1.2"
cibuildwheel: "2.2.2"
TWINE_NONINTERACTIVE: "1"

jobs:
Expand Down Expand Up @@ -91,6 +91,7 @@ jobs:
CIBW_TEST_REQUIRES: "pytest"
CIBW_TEST_COMMAND: "pytest -vsx {package}/tools/test_wheel.py"
CIBW_BUILD: "${{ matrix.cibw.build || '*' }}"
CIBW_SKIP: "${{ matrix.cibw.skip || '' }}"
CIBW_MANYLINUX_X86_64_IMAGE: "${{ matrix.cibw.manylinux_image }}"
CIBW_MANYLINUX_I686_IMAGE: "${{ matrix.cibw.manylinux_image }}"
CIBW_MANYLINUX_AARCH64_IMAGE: "${{ matrix.cibw.manylinux_image }}"
Expand All @@ -114,46 +115,58 @@ jobs:
name: manylinux1
cibw:
build: "cp36* cp37*"
skip: "*musllinux*"
manylinux_image: manylinux1

- os: ubuntu-20.04
name: manylinux2010
cibw:
build: "cp38* cp39* cp310* pp3*"
skip: "*musllinux*"
manylinux_image: manylinux2010

- os: ubuntu-20.04
name: musslinux
cibw:
skip: "*manylinux*"

- os: ubuntu-20.04
name: cp36-manylinux_aarch64
cibw:
build: "cp36*"
skip: "*musllinux*"
manylinux_image: manylinux2014
arch: aarch64

- os: ubuntu-20.04
name: cp37-manylinux_aarch64
cibw:
build: "cp37*"
skip: "*musllinux*"
manylinux_image: manylinux2014
arch: aarch64

- os: ubuntu-20.04
name: cp38-manylinux_aarch64
cibw:
build: "cp38*"
skip: "*musllinux*"
manylinux_image: manylinux2014
arch: aarch64

- os: ubuntu-20.04
name: cp39-manylinux_aarch64
cibw:
build: "cp39*"
skip: "*musllinux*"
manylinux_image: manylinux2014
arch: aarch64

- os: ubuntu-20.04
name: cp310-manylinux_aarch64
cibw:
build: "cp310*"
skip: "*musllinux*"
manylinux_image: manylinux2014
arch: aarch64

Expand Down

0 comments on commit 4b8f43c

Please sign in to comment.