Skip to content

Commit

Permalink
Support Python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
xioTechnologies authored Oct 5, 2023
1 parent df9e2de commit 8391378
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- [ ubuntu-latest, manylinux_x86_64 ]
- [ windows-latest, win_amd64 ]

python-version: [ "cp38-", "cp39-", "cp310-", "cp311-" ]
python-version: [ "cp38-", "cp39-", "cp310-", "cp311-", "cp312-" ]

steps:
- uses: actions/checkout@v3
Expand All @@ -45,7 +45,7 @@ jobs:
platforms: all

- name: Build wheel
uses: pypa/cibuildwheel@v2.14.1
uses: pypa/cibuildwheel@v2.16.2
env:
CIBW_ARCHS: all
CIBW_BUILD: ${{ matrix.python-version }}${{ matrix.target[1] }}
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,6 @@
classifiers=["Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11"], # versions shown by pyversions badge in README
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"], # versions shown by pyversions badge in README
ext_modules=[ext_modules])

0 comments on commit 8391378

Please sign in to comment.