From fc766bc3869bc100516431eebb3aa5e2a19da1a1 Mon Sep 17 00:00:00 2001 From: Arthur de Jong Date: Sun, 16 Feb 2025 21:19:58 +0100 Subject: Add support for Python 3.13 --- .github/workflows/test.yml | 2 +- setup.py | 1 + tox.ini | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 767659b..cae9ce3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -30,7 +30,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [3.8, 3.9, '3.10', 3.11, 3.12, pypy3.9] + python-version: [3.8, 3.9, '3.10', 3.11, 3.12, 3.13, pypy3.9] steps: - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} diff --git a/setup.py b/setup.py index cc69fee..a96631f 100755 --- a/setup.py +++ b/setup.py @@ -70,6 +70,7 @@ setup( 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', 'Programming Language :: Python :: 3.12', + 'Programming Language :: Python :: 3.13', 'Programming Language :: Python :: Implementation :: PyPy', 'Topic :: Office/Business :: Financial', 'Topic :: Software Development :: Libraries :: Python Modules', diff --git a/tox.ini b/tox.ini index 0a080f5..4c59f43 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py{36,37,38,39,310,311,312,py3},flake8,docs,headers +envlist = py{36,37,38,39,310,311,312,313,py3},flake8,docs,headers skip_missing_interpreters = true [testenv] -- cgit v1.2.3