Skip to content

Commit 6330e93

Browse files
authored
Merge pull request #38 from ssciwr/use_intel_and_arm_macos_runners
use intel (macos-13) and arm (macos-14) runners to build wheels
2 parents 4c01847 + be0a2c2 commit 6330e93

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
fail-fast: false
3030
matrix:
3131
os: [ubuntu-latest, macos-latest, windows-latest]
32-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
32+
python-version: ["3.10", "3.11", "3.12"]
3333
steps:
3434
- uses: actions/checkout@v4
3535

.github/workflows/pypi.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ jobs:
88
runs-on: ${{ matrix.os }}
99
strategy:
1010
matrix:
11-
os: [ubuntu-latest, windows-latest, macos-latest]
11+
os: [ubuntu-latest, windows-latest, macos-13, macos-14]
1212
steps:
1313
- uses: actions/checkout@v4
1414

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

1818
- uses: actions/upload-artifact@v4
1919
with:
@@ -35,7 +35,7 @@ jobs:
3535
path: dist/*.tar.gz
3636

3737
upload_pypi:
38-
needs: [build-wheels]
38+
needs: [build-wheels, build-sdist]
3939
runs-on: ubuntu-latest
4040
environment: release
4141
permissions:

0 commit comments

Comments
 (0)