From ec69d415cbe532c22635e35a4ef8e56a768e11f6 Mon Sep 17 00:00:00 2001 From: Honza Javorek Date: Wed, 21 Oct 2020 17:39:22 +0200 Subject: [PATCH] release v0.1.1 --- public_test/__init__.py | 3 --- pyproject.toml | 2 +- tests/test_public_test.py | 6 +----- 3 files changed, 2 insertions(+), 9 deletions(-) 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():