From b8eb7acaa5601ac179c32ad8cd52d7ce8fe1b193 Mon Sep 17 00:00:00 2001 From: harens Date: Tue, 4 May 2021 13:28:57 +0100 Subject: [PATCH] v0.1.2 release --- checkdigit/gs1.py | 1 - pyproject.toml | 2 +- tests.py | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/checkdigit/gs1.py b/checkdigit/gs1.py index a57b350..51817bc 100644 --- a/checkdigit/gs1.py +++ b/checkdigit/gs1.py @@ -19,7 +19,6 @@ from checkdigit._data import cleanse, convert - # WARNING: Data beginning with 0 must be as a string due to PEP 3127 diff --git a/pyproject.toml b/pyproject.toml index f100c9c..24a0b3b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "checkdigit" -version = "0.1.1" +version = "0.1.2" description = "A check digit library for data validation" authors = ["harens "] maintainers = ["harens "] diff --git a/tests.py b/tests.py index 1ae5021..92a484e 100644 --- a/tests.py +++ b/tests.py @@ -26,11 +26,11 @@ from error404 import test +import checkdigit.gs1 as gs1 import checkdigit.isbn as isbn import checkdigit.luhn as luhn import checkdigit.parity as parity import checkdigit.upc as upc -import checkdigit.gs1 as gs1 # Even parity test(parity.calculate("0110"), "01100")