Skip to content

Commit fdb98d0

Browse files
committed
ci: Enable macOS testing and add Python 3.13 support
- Add macOS runners to both test and wheel build workflows - Update Python version matrix to include 3.13
1 parent 94749bd commit fdb98d0

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,11 @@ env:
1313

1414
jobs:
1515
tests:
16-
runs-on: ubuntu-latest
17-
18-
16+
runs-on: ${{ matrix.os }}
1917
strategy:
2018
matrix:
21-
python-version: ['3.9', '3.10', '3.11', '3.12']
19+
os: [ubuntu-latest, macos-latest]
20+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
2221

2322
steps:
2423
- uses: actions/checkout@v4

.github/workflows/wheels.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ jobs:
1818
strategy:
1919
# fail-fast: true
2020
matrix:
21-
os: [ubuntu]
22-
python-version: ['3.9', '3.10', '3.11', '3.12']
21+
os: [ubuntu, macos]
22+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
2323

2424

2525
runs-on: ${{ format('{0}-latest', matrix.os) }}

0 commit comments

Comments
 (0)