From 6c615eda3ab468aaa145c2f6ce19c45686d4de13 Mon Sep 17 00:00:00 2001 From: "Jens H. Nielsen" Date: Wed, 31 Jan 2024 09:35:47 +0100 Subject: [PATCH] add support for python 3.12 --- .github/workflows/pytest.yaml | 4 +++- pyproject.toml | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pytest.yaml b/.github/workflows/pytest.yaml index 88b90d21a..4c9faa8d5 100644 --- a/.github/workflows/pytest.yaml +++ b/.github/workflows/pytest.yaml @@ -23,12 +23,14 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest] - python-version: ["3.9", "3.10", "3.11"] + python-version: ["3.9", "3.10", "3.11", "3.12"] exclude: - os: windows-latest python-version: "3.10" - os: windows-latest python-version: "3.11" + - os: windows-latest + python-version: "3.12" env: DISPLAY: ':99.0' OS: ${{ matrix.os }} diff --git a/pyproject.toml b/pyproject.toml index a3e18a605..f995d51db 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,6 +17,7 @@ classifiers = [ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Topic :: Scientific/Engineering",] requires-python = ">=3.9" dependencies = [ "qcodes>=0.42.0", "versioningit>=2.0.1", "packaging", "pandas"]