From 7ae7b1695c1fcc26c5a012cacca7aec8220599e0 Mon Sep 17 00:00:00 2001 From: Nkosenhle Duma Date: Wed, 28 Oct 2020 22:04:01 +0200 Subject: [PATCH] Setting version regardless --- pandas_ta/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandas_ta/__init__.py b/pandas_ta/__init__.py index 775a87d..d9e4181 100644 --- a/pandas_ta/__init__.py +++ b/pandas_ta/__init__.py @@ -15,8 +15,8 @@ try: raise DistributionNotFound except DistributionNotFound: __version__ = "Please install this project with setup.py" -else: - version = __version__ = _dist.version + +version = __version__ = _dist.version from importlib.util import find_spec