From 118057edb54f496679acef0a7715a0dd66b33756 Mon Sep 17 00:00:00 2001 From: Adriane Boyd Date: Mon, 18 Sep 2023 07:34:19 +0200 Subject: [PATCH 1/2] CI: Add python 3.12.0rc2 --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 304b486a..02b2f5be 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -21,7 +21,7 @@ jobs: fail-fast: true matrix: os: [ubuntu-latest, windows-latest, macos-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.0-rc.2"] include: - os: windows-2019 python_version: "3.6" @@ -90,7 +90,7 @@ jobs: CC=clang-12 python -m build --wheel - name: Build wheel (Linux / gcc) - if: startsWith(matrix.os, 'ubuntu') && matrix.python_version == '3.11' + if: startsWith(matrix.os, 'ubuntu') && (matrix.python_version == '3.11' || matrix.python_version == '3.12.0-rc.2') run: | gcc --version CC=gcc python -m build --wheel From ce4313ddc33f3f5ab9b82c7f306e1039e1f221ae Mon Sep 17 00:00:00 2001 From: Adriane Boyd Date: Mon, 18 Sep 2023 07:33:34 +0200 Subject: [PATCH 2/2] Add classifier for python 3.12 --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 6034a1c1..21052f95 100644 --- a/setup.py +++ b/setup.py @@ -378,6 +378,7 @@ def chdir(new_dir): "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Topic :: Scientific/Engineering", ], )