Skip to content

Commit

Permalink
Added Python 3.12 wheels (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
jborean93 authored Aug 28, 2023
1 parent 92ce6df commit 56809ae
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,8 @@ jobs:
- cp310-macosx_arm64
- cp311-macosx_x86_64
- cp311-macosx_arm64
- cp312-macosx_x86_64
- cp312-macosx_arm64

steps:
- uses: actions/download-artifact@v3
Expand All @@ -79,7 +81,7 @@ jobs:
rm krb5-*.tar.gz
- name: build wheel
uses: pypa/cibuildwheel@v2.11.1
uses: pypa/cibuildwheel@v2.15.0
env:
CIBW_ARCHS: all
CIBW_TEST_SKIP: '*_arm64'
Expand Down Expand Up @@ -110,6 +112,7 @@ jobs:
- 3.9
- '3.10'
- '3.11'
- '3.12.0-rc.1'
provider:
- mit
- heimdal
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## 0.5.1 - TBD

* Added support for Cython 3.x.y when building the extension modules
* Added Python 3.12 wheel for macOS

## 0.5.0 - 2023-02-20

Expand Down
5 changes: 5 additions & 0 deletions build_helpers/run-ci.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
#!/bin/bash -ex

# Set by GHA setup-python
if [[ -n "${pythonLocation}" ]]; then
PATH="${pythonLocation}/bin:${PATH}"
fi

source ./build_helpers/lib.sh
lib::setup::system_requirements
lib::setup::python_requirements
Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ classifiers =
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12

[options]
package_dir =
Expand Down

0 comments on commit 56809ae

Please sign in to comment.