Skip to content

Commit

Permalink
Update cibuildwheel, add macOS 13 & 14 support
Browse files Browse the repository at this point in the history
  • Loading branch information
horta committed May 15, 2024
1 parent 31fdeb7 commit 40eda01
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 5 deletions.
20 changes: 16 additions & 4 deletions .github/workflows/release-hmmer-py.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,19 +36,31 @@ jobs:
platforms: all

- name: Build wheels
run: pipx run cibuildwheel==2.13.1
run: pipx run cibuildwheel==2.18.0

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

make_macos_wheels:
runs-on: macos-latest
make_macos_intel_wheels:
runs-on: macos-13
steps:
- uses: actions/checkout@v3

- name: Build wheels
run: pipx run cibuildwheel==2.13.1
run: pipx run cibuildwheel==2.18.0

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

make_macos_arm_wheels:
runs-on: macos-14
steps:
- uses: actions/checkout@v3

- name: Build wheels
run: pipx run cibuildwheel==2.18.0

- uses: actions/upload-artifact@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-hmmer-py.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
os: [ubuntu-latest, macos-13, macos-14]

steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit 40eda01

Please sign in to comment.