From bc3066295de2bc022454bb42772d63f6e20c1f09 Mon Sep 17 00:00:00 2001 From: AlexWells Date: Wed, 24 Apr 2024 11:24:50 +0100 Subject: [PATCH] Add CI for Python 3.11 and 3.12 cibuildwheel update to support python 3.12. --- .github/workflows/code.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/code.yml b/.github/workflows/code.yml index 465e9351..66e1d703 100644 --- a/.github/workflows/code.yml +++ b/.github/workflows/code.yml @@ -54,7 +54,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, windows-latest, macos-13] - python: [cp37, cp38, cp39, cp310] + python: [cp37, cp38, cp39, cp310, cp311, cp312] include: # Put coverage and results files in the project directory for mac @@ -87,8 +87,7 @@ jobs: python-version: "3.7" - name: Install Python Dependencies - # Pin cibuildwheel due to https://github.com/pypa/cibuildwheel/issues/962 - run: pip install build cibuildwheel>=2.3.1 + run: pip install build cibuildwheel>=2.16.2 - name: Build Wheel run: cibuildwheel --output-dir dist @@ -131,7 +130,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, windows-latest, macos-13] - python: [cp37, cp38, cp39, cp310] + python: [cp37, cp38, cp39, cp310, cp311, cp312] runs-on: ${{ matrix.os }}