lists.arthurdejong.org
RSS feed

python-stdnum branch master updated. 2.1-28-ge7e900a

[Date Prev][Date Next] [Thread Prev][Thread Next]

python-stdnum branch master updated. 2.1-28-ge7e900a



This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "python-stdnum".

The branch, master has been updated
       via  e7e900ae801d7bd45860bddf13d7bd93c90ad9cf (commit)
      from  97d8caec2b5e378ce458c8bb8342e42c6991e301 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
https://arthurdejong.org/git/python-stdnum/commit/?id=e7e900ae801d7bd45860bddf13d7bd93c90ad9cf

commit e7e900ae801d7bd45860bddf13d7bd93c90ad9cf
Author: Arthur de Jong <arthur@arthurdejong.org>
Date:   Sun Jan 4 19:06:52 2026 +0100

    Add support for Python 3.14

diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 8c1633d..39906eb 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -14,7 +14,7 @@ jobs:
     strategy:
       fail-fast: false
       matrix:
-        python-version: [3.8, 3.9, '3.10', 3.11, 3.12, 3.13, pypy3.9]
+        python-version: [3.8, 3.9, '3.10', 3.11, 3.12, 3.13, 3.14, pypy3.9]
     steps:
       - uses: actions/checkout@v3
       - name: Set up Python ${{ matrix.python-version }}
diff --git a/setup.py b/setup.py
index c0910fc..6e39cf9 100755
--- a/setup.py
+++ b/setup.py
@@ -2,7 +2,7 @@
 
 # setup.py - python-stdnum installation script
 #
-# Copyright (C) 2010-2025 Arthur de Jong
+# Copyright (C) 2010-2026 Arthur de Jong
 #
 # This library is free software; you can redistribute it and/or
 # modify it under the terms of the GNU Lesser General Public
@@ -69,6 +69,7 @@ setup(
         'Programming Language :: Python :: 3.11',
         'Programming Language :: Python :: 3.12',
         'Programming Language :: Python :: 3.13',
+        'Programming Language :: Python :: 3.14',
         'Programming Language :: Python :: Implementation :: PyPy',
         'Topic :: Office/Business :: Financial',
         'Topic :: Software Development :: Libraries :: Python Modules',
diff --git a/tox.ini b/tox.ini
index a3a96d3..e7f366a 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,5 +1,5 @@
 [tox]
-envlist = py{38,39,310,311,312,313,py3},flake8,mypy,docs,headers
+envlist = py{38,39,310,311,312,313,314,py3},flake8,mypy,docs,headers
 skip_missing_interpreters = true
 
 [testenv]
@@ -42,6 +42,7 @@ commands =
     mypy -p stdnum --python-version 3.11
     mypy -p stdnum --python-version 3.12
     mypy -p stdnum --python-version 3.13
+    mypy -p stdnum --python-version 3.14
 
 [testenv:docs]
 use_develop = true

-----------------------------------------------------------------------

Summary of changes:
 .github/workflows/test.yml | 2 +-
 setup.py                   | 3 ++-
 tox.ini                    | 3 ++-
 3 files changed, 5 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
python-stdnum