From eae92c511a4b747e70450f9610158a05687bddf7 Mon Sep 17 00:00:00 2001 From: Joshua Watt Date: Fri, 22 Mar 2024 09:00:44 -0600 Subject: [PATCH] Add Python 3.11 and 3.12 support Adds support for testing on the two latest version of Python Signed-off-by: Joshua Watt --- .github/workflows/ci.yml | 2 ++ pyproject.toml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4404c6a..680de8e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,6 +16,8 @@ jobs: - "3.8" - "3.9" - "3.10" + - "3.11" + - "3.12" steps: - uses: actions/checkout@v4 - name: Setup Python ${{ matrix.python-version }} diff --git a/pyproject.toml b/pyproject.toml index 9e5133c..769f9c5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,6 +24,8 @@ classifiers = [ "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", ] [project.optional-dependencies]