Skip to content

Commit 1c71382

Browse files
authored
chore: Add Python 3.13 wheel (#89)
1 parent b3623a7 commit 1c71382

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.github/workflows/build_wheels.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
matrix:
1515
os: [ubuntu-20.04, macos-13, windows-latest]
1616
cibw_archs: ["auto64"]
17-
cibw_build: ["cp38", "cp39", "cp310", "cp311", "cp312"]
17+
cibw_build: ["cp38", "cp39", "cp310", "cp311", "cp312", "cp313"]
1818

1919
steps:
2020
- uses: actions/checkout@v3
@@ -30,7 +30,7 @@ jobs:
3030

3131
- name: Install cibuildwheel
3232
run: |
33-
python -m pip install cibuildwheel==2.19.2 delvewheel wheel
33+
python -m pip install cibuildwheel delvewheel wheel
3434
3535
- name: Building wheels
3636
run: |
@@ -73,7 +73,7 @@ jobs:
7373
matrix:
7474
os: [macos-13-xlarge]
7575
cibw_archs: ["arm64"]
76-
cibw_build: ["cp39", "cp310", "cp311", "cp312"]
76+
cibw_build: ["cp39", "cp310", "cp311", "cp312", "cp313"]
7777

7878
steps:
7979
- uses: actions/checkout@v3
@@ -89,7 +89,7 @@ jobs:
8989

9090
- name: Install cibuildwheel
9191
run: |
92-
python -m pip install cibuildwheel==2.15.0 delvewheel wheel
92+
python -m pip install cibuildwheel delvewheel wheel
9393
9494
- name: Building wheels
9595
run: |

.github/workflows/publish_pypi.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
matrix:
1717
os: [ubuntu-20.04, macos-13, windows-latest]
1818
cibw_archs: ["auto64"]
19-
cibw_build: ["cp38-*", "cp39-*", "cp310-*", "cp311-*", "cp312-*"]
19+
cibw_build: ["cp38-*", "cp39-*", "cp310-*", "cp311-*", "cp312-*", "cp313-*"]
2020

2121
steps:
2222
- uses: actions/checkout@v3
@@ -29,11 +29,11 @@ jobs:
2929
- uses: actions/setup-python@v4
3030
name: Install Python
3131
with:
32-
python-version: '3.8'
32+
python-version: '3.10'
3333

3434
- name: Install cibuildwheel
3535
run: |
36-
python -m pip install cibuildwheel==2.19.2 delvewheel wheel
36+
python -m pip install cibuildwheel delvewheel wheel
3737
3838
- name: Building wheels
3939
run: |
@@ -79,7 +79,7 @@ jobs:
7979
matrix:
8080
os: [macos-13-xlarge]
8181
cibw_archs: ["arm64"]
82-
cibw_build: ["cp39-*", "cp310-*", "cp311-*", "cp312-*"]
82+
cibw_build: ["cp39-*", "cp310-*", "cp311-*", "cp312-*", "cp313-*"]
8383

8484
steps:
8585
- uses: actions/checkout@v3
@@ -95,7 +95,7 @@ jobs:
9595

9696
- name: Install cibuildwheel
9797
run: |
98-
python -m pip install cibuildwheel==2.15.0 delvewheel wheel
98+
python -m pip install cibuildwheel delvewheel wheel
9999
100100
- name: Building wheels
101101
run: |

0 commit comments

Comments
 (0)