Skip to content

Commit

Permalink
Update to latest versions in wheel.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
rmjarvis committed Mar 11, 2024
1 parent 1fbce03 commit b79facb
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,51 +12,51 @@ jobs:
name: Build wheels on standard linux
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Build wheels
uses: pypa/cibuildwheel@v2.9.0
uses: pypa/cibuildwheel@v2.16.5
env:
CIBW_BUILD: "*manylinux*"
CIBW_SKIP: cp36* pp*
CIBW_BEFORE_ALL_LINUX: yum install -y libffi-devel || true

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
path: ./wheelhouse/*.whl

build_musl_wheels:
name: Build wheels on musl linux
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Build wheels
uses: pypa/cibuildwheel@v2.9.0
uses: pypa/cibuildwheel@v2.16.5
env:
CIBW_BUILD: "*musllinux*"
CIBW_SKIP: cp36* pp*
# I think musl always uses apk, but it doesn't seem to need ffi installed, so this works.
CIBW_BEFORE_ALL_LINUX: yum install -y libffi-devel || true

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
path: ./wheelhouse/*.whl

build_macosx_wheels:
name: Build wheels on macosx
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Build wheels
uses: pypa/cibuildwheel@v2.9.0
uses: pypa/cibuildwheel@v2.16.5
env:
CIBW_BUILD: "*macosx*"
CIBW_SKIP: cp36* pp*
CIBW_BEFORE_ALL_MACOS: brew install libffi || true

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
path: ./wheelhouse/*.whl

Expand All @@ -67,9 +67,9 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/setup-python@v3
- uses: actions/setup-python@v5
with:
python-version: "3.10"

Expand Down

0 comments on commit b79facb

Please sign in to comment.