Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArthur de Jong <arthur@arthurdejong.org>2025-02-16 21:19:58 +0100
committerArthur de Jong <arthur@arthurdejong.org>2025-02-16 21:21:41 +0100
commitfc766bc3869bc100516431eebb3aa5e2a19da1a1 (patch)
treea10463ff69378bca26149dcfce50409c79e4bcc6
parent1386f677ea3dbe4743b62f986c85dd08d025bcb2 (diff)
Add support for Python 3.13HEADmaster
-rw-r--r--.github/workflows/test.yml2
-rwxr-xr-xsetup.py1
-rw-r--r--tox.ini2
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]