python-stdnum branch master updated. 1.19-2-g1a5db1f
[
Date Prev][
Date Next]
[
Thread Prev][
Thread Next]
python-stdnum branch master updated. 1.19-2-g1a5db1f
- From: Commits of the python-stdnum project <python-stdnum-commits [at] lists.arthurdejong.org>
- To: python-stdnum-commits [at] lists.arthurdejong.org
- Reply-to: python-stdnum-users [at] lists.arthurdejong.org, python-stdnum-commits [at] lists.arthurdejong.org
- Subject: python-stdnum branch master updated. 1.19-2-g1a5db1f
- Date: Sun, 12 Nov 2023 12:46:19 +0100 (CET)
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 1a5db1f405f2983fa36b50e6969d42c2ec12f8a2 (commit)
via 352bbcb90fb53fd52fb629358a3f2129e0d9434c (commit)
from fa455fc0990c1844793e482defeb9c17e96cbb94 (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=1a5db1f405f2983fa36b50e6969d42c2ec12f8a2
commit 1a5db1f405f2983fa36b50e6969d42c2ec12f8a2
Author: Arthur de Jong <arthur@arthurdejong.org>
Date: Sun Nov 12 12:44:08 2023 +0100
Fix typo (thanks Александр Кизеев)
diff --git a/stdnum/de/vat.py b/stdnum/de/vat.py
index f2bfe29..f2e9ca6 100644
--- a/stdnum/de/vat.py
+++ b/stdnum/de/vat.py
@@ -19,7 +19,7 @@
"""Ust ID Nr. (Umsatzsteur Identifikationnummer, German VAT number).
-The number is 10 digits long and uses the ISO 7064 Mod 11, 10 check digit
+The number is 9 digits long and uses the ISO 7064 Mod 11, 10 check digit
algorithm.
>>> compact('DE 136,695 976')
https://arthurdejong.org/git/python-stdnum/commit/?id=352bbcb90fb53fd52fb629358a3f2129e0d9434c
commit 352bbcb90fb53fd52fb629358a3f2129e0d9434c
Author: Arthur de Jong <arthur@arthurdejong.org>
Date: Mon Oct 2 22:03:22 2023 +0200
Add support for Python 3.12
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 90412d8..8409a9e 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -44,7 +44,7 @@ jobs:
strategy:
fail-fast: false
matrix:
- python-version: [3.7, 3.8, 3.9, '3.10', 3.11, pypy3.9]
+ python-version: [3.7, 3.8, 3.9, '3.10', 3.11, 3.12, pypy3.9]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
diff --git a/setup.py b/setup.py
index 699b3c7..c938536 100755
--- a/setup.py
+++ b/setup.py
@@ -72,6 +72,7 @@ setup(
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
+ 'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Office/Business :: Financial',
'Topic :: Software Development :: Libraries :: Python Modules',
diff --git a/tox.ini b/tox.ini
index 36eda87..0f5bd8a 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,5 +1,5 @@
[tox]
-envlist = py{27,35,36,37,38,39,310,311,py,py3},flake8,docs,headers
+envlist = py{27,35,36,37,38,39,310,311,312,py,py3},flake8,docs,headers
skip_missing_interpreters = true
[testenv]
-----------------------------------------------------------------------
Summary of changes:
.github/workflows/test.yml | 2 +-
setup.py | 1 +
stdnum/de/vat.py | 2 +-
tox.ini | 2 +-
4 files changed, 4 insertions(+), 3 deletions(-)
hooks/post-receive
--
python-stdnum
- python-stdnum branch master updated. 1.19-2-g1a5db1f,
Commits of the python-stdnum project