From 6281c7599037e1c909ce897287da3f37268365bf Mon Sep 17 00:00:00 2001 From: Jonathan Gangi Date: Thu, 10 Oct 2024 17:10:50 -0300 Subject: [PATCH] Add support for Python 3.13 Add support for Python 3.13 which went GA on October 7, 2024. See: https://devguide.python.org/versions/#supported-versions --- .github/workflows/tox-test.yml | 2 +- setup.py | 1 + tox.ini | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tox-test.yml b/.github/workflows/tox-test.yml index 770dd4e..73d36d4 100644 --- a/.github/workflows/tox-test.yml +++ b/.github/workflows/tox-test.yml @@ -42,7 +42,7 @@ jobs: strategy: matrix: # https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json - python-version: ["3.9", "3.10", "3.11", "3.12"] + python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} diff --git a/setup.py b/setup.py index 690619f..a941db2 100644 --- a/setup.py +++ b/setup.py @@ -17,6 +17,7 @@ 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', 'Programming Language :: Python :: 3.12', + 'Programming Language :: Python :: 3.13', ], install_requires=[ 'attrs', diff --git a/tox.ini b/tox.ini index 1357017..c2c75f3 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = pip-compile, docs, lint, mypy, security, py39, py310, py311, py312 +envlist = pip-compile, docs, lint, mypy, security, py39, py310, py311, py312, py313 [testenv] envdir = {toxworkdir}/shared-environment