Skip to content

Commit 3621baa

Browse files
chore: Add python 3.13 and fix ci for macos intel (#12)
1 parent 98688a5 commit 3621baa

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,17 @@ jobs:
1616
os:
1717
- ubuntu-latest
1818
# Used for the x86_64 builds.
19-
- macos-13
19+
- macos-15-intel
2020
# Used for the ARM builds.
21-
- macos-14
21+
- macos-15
2222
- windows-latest
23-
python-version: ['3.9', '3.10', '3.11', '3.12']
23+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
2424
steps:
2525
- uses: actions/checkout@v4
2626
- uses: actions/setup-python@v5
2727
with:
2828
python-version: ${{ matrix.python-version }}
29-
architecture: ${{ matrix.os == 'macos-14' && 'arm64' || 'x64' }}
29+
architecture: ${{ matrix.os == 'macos-15' && 'arm64' || 'x64' }}
3030
- name: Install dependencies
3131
run: |
3232
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)