From 252caa255d9af8578a0f07a3bb7cb1d1ceb98ad9 Mon Sep 17 00:00:00 2001 From: Anthony Romaniello <66272872+aromanielloNTIA@users.noreply.github.com> Date: Thu, 7 Nov 2024 13:37:43 -0500 Subject: [PATCH] Add support and testing for Py 3.12 and 3.13 --- .github/workflows/tox.yaml | 2 ++ pyproject.toml | 2 ++ tox.ini | 4 ++++ 3 files changed, 8 insertions(+) diff --git a/.github/workflows/tox.yaml b/.github/workflows/tox.yaml index 2cf3db71..cdc4a100 100644 --- a/.github/workflows/tox.yaml +++ b/.github/workflows/tox.yaml @@ -37,6 +37,8 @@ jobs: - "3.9" - "3.10" - "3.11" + - "3.12" + - "3.13" steps: - name: Set up Python ${{ matrix.py }} uses: actions/setup-python@v4 diff --git a/pyproject.toml b/pyproject.toml index a34afe30..a29bd800 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -39,6 +39,8 @@ classifiers = [ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", ] dependencies = [ diff --git a/tox.ini b/tox.ini index f04c3a61..04b6072d 100644 --- a/tox.ini +++ b/tox.ini @@ -4,6 +4,8 @@ env_list = py39 py310 py311 + py312 + py313 min_version = 4.5.1 skip_missing_interpreters = true no_package = false @@ -21,3 +23,5 @@ python = 3.9 = py39 3.10 = py310 3.11 = py311 + 3.12 = py312 + 3.13 = py313