From efb2edb957f1d74b9e18239053ba9ec4d7492ea7 Mon Sep 17 00:00:00 2001 From: Kevin Klein <7267523+kklein@users.noreply.github.com> Date: Tue, 19 Mar 2024 10:55:55 +0100 Subject: [PATCH] Support python 3.12 (#13) --- .github/workflows/ci.yml | 2 +- pyproject.toml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index aab3c41..61c91c7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,7 +33,7 @@ jobs: strategy: fail-fast: false matrix: - PYTHON_VERSION: ["3.9", "3.10", "3.11"] + PYTHON_VERSION: ["3.9", "3.10", "3.11", "3.12"] steps: - name: Checkout branch uses: actions/checkout@v4 diff --git a/pyproject.toml b/pyproject.toml index 020f538..653fafc 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", ] requires-python = ">=3.9"