Skip to content

Commit

Permalink
Add Python 3.12 support
Browse files Browse the repository at this point in the history
  • Loading branch information
bwoodsend committed Dec 20, 2023
1 parent 1e5013c commit fbadd29
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- uses: actions/setup-python@v3

- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.12.3
run: python -m pip install cibuildwheel==2.16.2

# We need docker's cross architecture emulation to build ARM wheels.
- if: startsWith(matrix.os, 'ubuntu')
Expand All @@ -32,7 +32,7 @@ jobs:
env:
# Platform options
CIBW_ARCHS_MACOS: "x86_64 arm64"
CIBW_PROJECT_REQUIRES_PYTHON: ">=3.7,<3.12"
CIBW_PROJECT_REQUIRES_PYTHON: ">=3.7,<3.13"
CIBW_SKIP: "pp* *-musllinux_*" # Skip PyPy and musl.
CIBW_MANYLINUX_X86_64_IMAGE: "manylinux2014"
CIBW_ARCHS_LINUX: x86_64 aarch64
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.7, 3.8, 3.9, '3.10', 3.11]
python-version: [3.7, 3.8, 3.9, '3.10', 3.11, 3.12]
fail-fast: false

steps:
Expand Down

0 comments on commit fbadd29

Please sign in to comment.