-
Notifications
You must be signed in to change notification settings - Fork 211
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b454d3a
commit 201d4d1
Showing
9 changed files
with
150 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,113 @@ | ||
2024-03-17 Arthur de Jong <[email protected]> | ||
|
||
* [b454d3a] stdnum/at/postleitzahl.dat, stdnum/be/banks.dat, | ||
stdnum/cn/loc.dat, stdnum/gs1_128.py, stdnum/gs1_ai.dat, | ||
stdnum/iban.dat, stdnum/imsi.dat, stdnum/isbn.dat, stdnum/isil.dat, | ||
stdnum/nz/banks.dat, stdnum/oui.dat, tests/test_be_iban.doctest, | ||
update/gs1_ai.py: Update database files | ||
|
||
The Belgian bpost bank no longer has a registration and a few | ||
bank account numbers in the tests that used that bank were removed. | ||
|
||
Also updates the update/gs1_ai.py script to handle the new format | ||
of the data published by GS1. Also update the GS1-128 module to | ||
handle some different date formats. | ||
|
||
The Pakistan entry was kept in the stdnum/iban.dat file because | ||
the PDF version of the IBAN Registry still contains the country. | ||
|
||
fix db | ||
|
||
2024-03-17 Arthur de Jong <[email protected]> | ||
|
||
* [97dbced] tox.ini: Add update-dat tox target for convenient data | ||
file updating | ||
|
||
2024-03-17 Arthur de Jong <[email protected]> | ||
|
||
* [26fd25b] setup.cfg, update/cfi.py, update/nz_banks.py, | ||
update/requirements.txt: Switch to using openpyxl for parsing | ||
XLSX files | ||
|
||
The xlrd has dropped support for parsing XLSX files. We still | ||
use xlrd for update/be_banks.py because they use the classic | ||
XLS format and openpyxl does not support that format. | ||
|
||
2024-03-17 Arthur de Jong <[email protected]> | ||
|
||
* [9230604] stdnum/za/idnr.py: Use HTTPS in URLs where possible | ||
|
||
2024-02-27 Atul Deolekar <[email protected]> | ||
|
||
* [7cba469] stdnum/in_/vid.py: Add Indian virtual identity number | ||
|
||
Closes https://github.com/arthurdejong/python-stdnum/pull/428 | ||
|
||
2024-03-17 Arthur de Jong <[email protected]> | ||
|
||
* [bb20121] stdnum/ua/edrpou.py, tests/test_ua_edrpou.doctest: | ||
Fix Ukrainian EDRPOU check digit calculation | ||
|
||
This fixes the case where the weighted sum woud be 10 which | ||
should result in a check digit of 0. | ||
|
||
Closes https://github.com/arthurdejong/python-stdnum/issues/429 | ||
|
||
2023-12-15 Kevin Dagostino <[email protected]> | ||
|
||
* [9c7c669] stdnum/fr/nif.py: Imporve French NIF validation | ||
(checksum) | ||
|
||
The last 3 digits are a checksum. % 511 | ||
https://ec.europa.eu/taxation_customs/tin/specs/FS-TIN%20Algorithms-Public.docx | ||
|
||
Closes https://github.com/arthurdejong/python-stdnum/pull/426 | ||
|
||
2024-02-03 Arthur de Jong <[email protected]> | ||
|
||
* [1e412ee] stdnum/vatin.py, tests/test_vatin.doctest: Fix vatin | ||
number compacting for "EU" VAT numbers | ||
|
||
Thanks Davide Walder for finding this. | ||
|
||
Closes https://github.com/arthurdejong/python-stdnum/issues/427 | ||
|
||
2023-11-19 Daniel Weber <[email protected]> | ||
|
||
* [2535bbf] stdnum/eu/ecnumber.py, tests/test_eu_ecnumber.doctest: | ||
Add European Community (EC) Number | ||
|
||
Closes https://github.com/arthurdejong/python-stdnum/pull/422 | ||
|
||
2023-10-20 Ömer Boratav <[email protected]> | ||
|
||
* [2478483] stdnum/ca/bc_phn.py: Add British Columbia PHN | ||
|
||
Closes https://github.com/arthurdejong/python-stdnum/pull/421 | ||
|
||
2023-11-12 Arthur de Jong <[email protected]> | ||
|
||
* [58d6283] stdnum/ro/cf.py, tests/test_eu_vat.doctest: Ensure EU | ||
VAT numbers don't accept duplicate country codes | ||
|
||
2023-11-12 Arthur de Jong <[email protected]> | ||
|
||
* [1a5db1f] stdnum/de/vat.py: Fix typo (thanks Александр | ||
Кизеев) | ||
|
||
2023-10-02 Arthur de Jong <[email protected]> | ||
|
||
* [352bbcb] .github/workflows/test.yml, setup.py, tox.ini: Add | ||
support for Python 3.12 | ||
|
||
2023-08-20 Arthur de Jong <[email protected]> | ||
|
||
* [fa455fc] ChangeLog, NEWS, README.md, docs/index.rst, | ||
docs/stdnum.be.bis.rst, docs/stdnum.eg.tn.rst, | ||
docs/stdnum.es.postal_code.rst, docs/stdnum.eu.oss.rst, | ||
docs/stdnum.gn.nifp.rst, docs/stdnum.si.maticna.rst, | ||
stdnum/__init__.py: Get files ready for 1.19 release | ||
|
||
2023-08-20 Arthur de Jong <[email protected]> | ||
|
||
* [3191b4c] MANIFEST.in: Ensure all files are included in source | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
stdnum.ca.bc_phn | ||
================ | ||
|
||
.. automodule:: stdnum.ca.bc_phn | ||
:members: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
stdnum.eu.ecnumber | ||
================== | ||
|
||
.. automodule:: stdnum.eu.ecnumber | ||
:members: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
stdnum.in\_.vid | ||
=============== | ||
|
||
.. automodule:: stdnum.in_.vid | ||
:members: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters