Skip to content

Commit 3c8f7a2

Browse files
authored
Build wheels for Python 3.13 (#467)
Also upgrade wheel build env: * GitHub actions images: https://github.com/actions/runner-images * Python * cibuildwheel: https://github.com/pypa/cibuildwheel/releases/tag/v2.20.0
1 parent 548fcf7 commit 3c8f7a2

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

.github/workflows/build.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -13,26 +13,26 @@ jobs:
1313
strategy:
1414
matrix:
1515
os:
16-
- ubuntu-22.04
16+
- ubuntu-24.04
1717
- windows-2022
18-
- macos-12
18+
- macos-14
1919

2020
env:
2121
CIBW_ARCHS_LINUX: x86_64 i686 aarch64
2222
CIBW_ARCHS_MACOS: x86_64 universal2
2323
CIBW_ARCHS_WINDOWS: AMD64 x86 ARM64
24-
CIBW_BUILD: "cp37-* cp38-* cp39-* cp310-* cp311-* cp312-*"
24+
CIBW_BUILD: "cp37-* cp38-* cp39-* cp310-* cp311-* cp312-*-* cp313-*"
2525

2626
steps:
2727
- uses: actions/checkout@v4
2828

2929
- uses: actions/setup-python@v5
3030
with:
31-
python-version: '3.11'
31+
python-version: '3.12'
3232

3333
- name: Install cibuildwheel
3434
run: |
35-
python -m pip install cibuildwheel==2.17.0
35+
python -m pip install cibuildwheel==2.20.0
3636
3737
- name: Set up QEMU
3838
if: runner.os == 'Linux'

CHANGELOG.rst

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
Changelog
33
=========
44

5+
* Include wheels for Python 3.13.
6+
57
2.14.2 (2024-06-29)
68
-------------------
79

0 commit comments

Comments
 (0)