python-stdnum branch master updated. 1.13-14-gebe7e10
[
Date Prev][
Date Next]
[
Thread Prev][
Thread Next]
python-stdnum branch master updated. 1.13-14-gebe7e10
- 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.13-14-gebe7e10
- Date: Sat, 7 Mar 2020 17:26:43 +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 ebe7e1012ddc1286d61de5c5a565aff9cd4faedf (commit)
via 642908032012baf200ab227803982730c6d4b083 (commit)
via 84ee720fd2d8403de5f49c54fc41bfcb67a78f78 (commit)
via fcbe159119e105af796674f4a2ddd37489031ccb (commit)
via 9be7deeaf400858dc00118d274b4cf4d19c60858 (commit)
via 69d22e9e7ff574d4f510269e589dafa45132047f (commit)
from df9f9222f97ad2cccb3dd93499ae9e7768584565 (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=ebe7e1012ddc1286d61de5c5a565aff9cd4faedf
commit ebe7e1012ddc1286d61de5c5a565aff9cd4faedf
Author: Leandro Regueiro <leandro.regueiro@gmail.com>
Date: Sat Mar 7 15:23:16 2020 +0100
Add missing vat alias for Japan
diff --git a/stdnum/jp/__init__.py b/stdnum/jp/__init__.py
index 12751aa..9b99e0e 100644
--- a/stdnum/jp/__init__.py
+++ b/stdnum/jp/__init__.py
@@ -19,3 +19,4 @@
# 02110-1301 USA
"""Collection of Japanese numbers."""
+from stdnum.jp import cn as vat # noqa: F401
https://arthurdejong.org/git/python-stdnum/commit/?id=642908032012baf200ab227803982730c6d4b083
commit 642908032012baf200ab227803982730c6d4b083
Author: Leandro Regueiro <leandro.regueiro@gmail.com>
Date: Sat Mar 7 15:23:04 2020 +0100
Add missing vat alias for Canada
diff --git a/stdnum/ca/__init__.py b/stdnum/ca/__init__.py
index bb4db36..5d44d1e 100644
--- a/stdnum/ca/__init__.py
+++ b/stdnum/ca/__init__.py
@@ -19,3 +19,4 @@
# 02110-1301 USA
"""Collection of Canadian numbers."""
+from stdnum.ca import bn as vat # noqa: F401
https://arthurdejong.org/git/python-stdnum/commit/?id=84ee720fd2d8403de5f49c54fc41bfcb67a78f78
commit 84ee720fd2d8403de5f49c54fc41bfcb67a78f78
Author: Leandro Regueiro <leandro.regueiro@gmail.com>
Date: Sat Mar 7 15:22:47 2020 +0100
Add missing vat alias for Turkey
diff --git a/stdnum/tr/__init__.py b/stdnum/tr/__init__.py
index c5fa2f8..ebb92d3 100644
--- a/stdnum/tr/__init__.py
+++ b/stdnum/tr/__init__.py
@@ -19,3 +19,4 @@
# 02110-1301 USA
"""Collection of Turkish numbers."""
+from stdnum.tr import vkn as vat # noqa: F401
https://arthurdejong.org/git/python-stdnum/commit/?id=fcbe159119e105af796674f4a2ddd37489031ccb
commit fcbe159119e105af796674f4a2ddd37489031ccb
Author: Leandro Regueiro <leandro.regueiro@gmail.com>
Date: Sat Mar 7 15:22:32 2020 +0100
Add missing vat alias for Peru
diff --git a/stdnum/pe/__init__.py b/stdnum/pe/__init__.py
index 4d92e64..80bbd52 100644
--- a/stdnum/pe/__init__.py
+++ b/stdnum/pe/__init__.py
@@ -19,3 +19,4 @@
# 02110-1301 USA
"""Collection of Peruvian numbers."""
+from stdnum.pe import ruc as vat # noqa: F401
https://arthurdejong.org/git/python-stdnum/commit/?id=9be7deeaf400858dc00118d274b4cf4d19c60858
commit 9be7deeaf400858dc00118d274b4cf4d19c60858
Author: Leandro Regueiro <leandro.regueiro@gmail.com>
Date: Sat Mar 7 15:22:12 2020 +0100
Add missing vat alias for Costa Rica
diff --git a/stdnum/cr/__init__.py b/stdnum/cr/__init__.py
index 5718342..d9b149a 100644
--- a/stdnum/cr/__init__.py
+++ b/stdnum/cr/__init__.py
@@ -19,3 +19,4 @@
# 02110-1301 USA
"""Collection of Costa Rican numbers."""
+from stdnum.cr import cpj as vat # noqa: F401
https://arthurdejong.org/git/python-stdnum/commit/?id=69d22e9e7ff574d4f510269e589dafa45132047f
commit 69d22e9e7ff574d4f510269e589dafa45132047f
Author: Leandro Regueiro <leandro.regueiro@gmail.com>
Date: Sat Mar 7 15:21:32 2020 +0100
Add missing vat alias for Brazil
diff --git a/stdnum/br/__init__.py b/stdnum/br/__init__.py
index 4b9e647..3b2d22f 100644
--- a/stdnum/br/__init__.py
+++ b/stdnum/br/__init__.py
@@ -19,3 +19,4 @@
# 02110-1301 USA
"""Collection of Brazilian numbers."""
+from stdnum.br import cnpj as vat # noqa: F401
-----------------------------------------------------------------------
Summary of changes:
stdnum/br/__init__.py | 1 +
stdnum/ca/__init__.py | 1 +
stdnum/cr/__init__.py | 1 +
stdnum/jp/__init__.py | 1 +
stdnum/pe/__init__.py | 1 +
stdnum/tr/__init__.py | 1 +
6 files changed, 6 insertions(+)
hooks/post-receive
--
python-stdnum
- python-stdnum branch master updated. 1.13-14-gebe7e10,
Commits of the python-stdnum project