From a45fe86862c6f5406a86f0c641eaf089c5160e65 Mon Sep 17 00:00:00 2001 From: elior Date: Mon, 11 Jul 2022 13:54:40 +0300 Subject: [PATCH] :construction_worker: Fix docs --- tavolo/__init__.py | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/tavolo/__init__.py b/tavolo/__init__.py index 2ac13c1..6a3ab0c 100644 --- a/tavolo/__init__.py +++ b/tavolo/__init__.py @@ -1,16 +1,5 @@ -from pathlib import Path - -import toml - from . import embeddings from . import learning from . import seq2vec - -def get_version(): - path = Path(__file__).resolve().parents[1] / 'pyproject.toml' - pyproject = toml.loads(open(str(path)).read()) - return pyproject['tool']['poetry']['version'] - - -__version__ = get_version() +__version__ = "0.8.0"