Skip to content

Commit f8435c9

Browse files
committed
[CI] Fix for python 3.13
- unpin cibuildwheel - temporarily only build python 3.13
1 parent 5ca3697 commit f8435c9

File tree

1 file changed

+12
-11
lines changed

1 file changed

+12
-11
lines changed

.github/workflows/publish.yml

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -17,21 +17,22 @@ jobs:
1717
fail-fast: false
1818
matrix:
1919
os: [ubuntu-latest, windows-latest, macos-14, macos-15-intel]
20-
python_version: ['3.9', '3.10', '3.11', '3.12', '3.13']
20+
#python_version: ['3.9', '3.10', '3.11', '3.12', '3.13']
21+
python_version: ['3.13']
2122

2223
include:
2324

24-
#- os: ubuntu-latest
25-
# platform_id: manylinux_x86_64
26-
# manylinux_image: manylinux2014
27-
#- os: windows-latest
28-
# platform_id: win_amd64
25+
- os: ubuntu-latest
26+
platform_id: manylinux_x86_64
27+
manylinux_image: manylinux2014
28+
- os: windows-latest
29+
platform_id: win_amd64
2930
# macos x86_64 (intel)
3031
- os: macos-15-intel
3132
platform_id: macosx_x86_64
3233
# macos arm64 (apple silicon)
33-
#- os: macos-14
34-
# platform_id: macosx_arm64
34+
- os: macos-14
35+
platform_id: macosx_arm64
3536

3637
- python_version: '3.9'
3738
python: 39
@@ -41,8 +42,8 @@ jobs:
4142
python: 311
4243
- python_version: '3.12'
4344
python: 312
44-
#- python_version: '3.13'
45-
# python: 313
45+
- python_version: '3.13'
46+
python: 313
4647

4748
runs-on: ${{ matrix.os }}
4849

@@ -63,7 +64,7 @@ jobs:
6364
pip install -e .
6465

6566
- name: Install cibuildwheel
66-
run: python -m pip install cibuildwheel==2.19.2
67+
run: python -m pip install cibuildwheel
6768

6869
- name: Build wheels
6970
run: python -m cibuildwheel --output-dir wheelhouse

0 commit comments

Comments
 (0)