diff --git a/public_test/__init__.py b/public_test/__init__.py index d443c35..b0f8b2d 100644 --- a/public_test/__init__.py +++ b/public_test/__init__.py @@ -1,4 +1 @@ -__version__ = '0.1.0' - - ANSWER = 42 diff --git a/pyproject.toml b/pyproject.toml index b2cb984..ce7c473 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "public-test" -version = "0.1.0" +version = "0.1.1" description = "Sample public project setup" authors = [ "Digismoothie s.r.o. ", diff --git a/tests/test_public_test.py b/tests/test_public_test.py index 7399463..c851057 100644 --- a/tests/test_public_test.py +++ b/tests/test_public_test.py @@ -1,8 +1,4 @@ -from public_test import __version__, ANSWER - - -def test_version(): - assert __version__ == '0.1.0' +from public_test import ANSWER def test_answer():