Skip to content

Commit e7e900a

Browse files
committed
Add support for Python 3.14
1 parent 97d8cae commit e7e900a

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
python-version: [3.8, 3.9, '3.10', 3.11, 3.12, 3.13, pypy3.9]
17+
python-version: [3.8, 3.9, '3.10', 3.11, 3.12, 3.13, 3.14, pypy3.9]
1818
steps:
1919
- uses: actions/checkout@v3
2020
- name: Set up Python ${{ matrix.python-version }}

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# setup.py - python-stdnum installation script
44
#
5-
# Copyright (C) 2010-2025 Arthur de Jong
5+
# Copyright (C) 2010-2026 Arthur de Jong
66
#
77
# This library is free software; you can redistribute it and/or
88
# modify it under the terms of the GNU Lesser General Public
@@ -69,6 +69,7 @@
6969
'Programming Language :: Python :: 3.11',
7070
'Programming Language :: Python :: 3.12',
7171
'Programming Language :: Python :: 3.13',
72+
'Programming Language :: Python :: 3.14',
7273
'Programming Language :: Python :: Implementation :: PyPy',
7374
'Topic :: Office/Business :: Financial',
7475
'Topic :: Software Development :: Libraries :: Python Modules',

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{38,39,310,311,312,313,py3},flake8,mypy,docs,headers
2+
envlist = py{38,39,310,311,312,313,314,py3},flake8,mypy,docs,headers
33
skip_missing_interpreters = true
44

55
[testenv]
@@ -42,6 +42,7 @@ commands =
4242
mypy -p stdnum --python-version 3.11
4343
mypy -p stdnum --python-version 3.12
4444
mypy -p stdnum --python-version 3.13
45+
mypy -p stdnum --python-version 3.14
4546

4647
[testenv:docs]
4748
use_develop = true

0 commit comments

Comments
 (0)