Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: Add support for building wheels for Python 3.13. #106

Merged
merged 3 commits into from
Dec 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,12 @@ jobs:
os: "macos-14"
- name: "cp312-macosx_x86_64"
os: "macos-14"
- name: "cp313-macosx_arm64"
os: "macos-14"
- name: "cp313-macosx_universal2"
os: "macos-14"
- name: "cp313-macosx_x86_64"
os: "macos-14"

# Linux builds
- name: "cp310-manylinux_aarch64"
Expand Down Expand Up @@ -131,6 +137,18 @@ jobs:
os: "ubuntu-22.04"
- name: "cp312-musllinux_x86_64"
os: "ubuntu-22.04"
- name: "cp313-manylinux_aarch64"
os: "ubuntu-22.04"
- name: "cp313-manylinux_i686"
os: "ubuntu-22.04"
- name: "cp313-manylinux_x86_64"
os: "ubuntu-22.04"
- name: "cp313-musllinux_aarch64"
os: "ubuntu-22.04"
- name: "cp313-musllinux_i686"
os: "ubuntu-22.04"
- name: "cp313-musllinux_x86_64"
os: "ubuntu-22.04"
- name: "cp37-manylinux_aarch64"
os: "ubuntu-22.04"
- name: "cp37-manylinux_i686"
Expand Down Expand Up @@ -181,6 +199,8 @@ jobs:
os: "windows-2022"
- name: "cp312-win_amd64"
os: "windows-2022"
- name: "cp313-win_amd64"
os: "windows-2022"

steps:
- name: "Checkout"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ project homepage on PyPI [here][7].

## Compatibility

Tested on Python 3.7, 3.8, 3.11 and 3.12, and it should work on any Python
Tested on Python 3.7, 3.8, 3.11, 3.12, and 3.13, and it should work on any Python
version >= 3.7.

## API Reference
Expand Down
Loading