From 9b1dae4765b419778f8721caf9d0a6e05c2758eb Mon Sep 17 00:00:00 2001 From: Cosimo Lupo Date: Fri, 8 Sep 2023 12:17:36 +0100 Subject: [PATCH] CI: also build wheels for Python 3.12 --- .github/workflows/wheels.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index a1295eb0c..c64d4a0d6 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -63,8 +63,7 @@ jobs: with: python-version: "3.x" - name: Install dependencies - # using fork of cibuildwheel until this is fixed: https://github.com/pypa/cibuildwheel/issues/1504 - run: pip install git+https://github.com/anthrotype/cibuildwheel.git@test_command_wheel#egg=cibuildwheel + run: pip install cibuildwheel - name: Build Wheels run: python -m cibuildwheel --output-dir wheelhouse . @@ -81,7 +80,7 @@ jobs: strategy: matrix: # aarch64 uses qemu so it's slow, build each py version in parallel jobs - python: [38, 39, 310, 311] + python: [38, 39, 310, 311, 312] arch: [aarch64] steps: - uses: actions/checkout@v3