Skip to content

Commit

Permalink
use intel (macos-13) and arm (macos-14) runners to build wheels
Browse files Browse the repository at this point in the history
- bump cibuildwheel version
- reduce python versions in CI since macos-latest runners only have Python>=3.10 installed
  • Loading branch information
lkeegan committed Apr 25, 2024
1 parent 4c01847 commit be0a2c2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
os: [ubuntu-latest, windows-latest, macos-13, macos-14]
steps:
- uses: actions/checkout@v4

- name: Build wheels
uses: pypa/cibuildwheel@v2.16
uses: pypa/cibuildwheel@v2.17

- uses: actions/upload-artifact@v4
with:
Expand All @@ -35,7 +35,7 @@ jobs:
path: dist/*.tar.gz

upload_pypi:
needs: [build-wheels]
needs: [build-wheels, build-sdist]
runs-on: ubuntu-latest
environment: release
permissions:
Expand Down

0 comments on commit be0a2c2

Please sign in to comment.