From 5ec2ba940e14369e60c8f3ea31377bf93b8894a3 Mon Sep 17 00:00:00 2001 From: Ugo Albanese <u.albanese@santannapisa.it> Date: Wed, 16 Dec 2020 16:09:32 +0100 Subject: [PATCH] [NRRPLT-0000] Remove import in __init__ that prevented setup.py from running due to a circular dependency. setup.py importing pynrp for learning its version, runs virtual_coach that ends up failing since its requirements haven't been installed yet (by setup.py). --- hbp_nrp_virtual_coach/pynrp/__init__.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/hbp_nrp_virtual_coach/pynrp/__init__.py b/hbp_nrp_virtual_coach/pynrp/__init__.py index 01e69d2..2cb2185 100644 --- a/hbp_nrp_virtual_coach/pynrp/__init__.py +++ b/hbp_nrp_virtual_coach/pynrp/__init__.py @@ -3,5 +3,4 @@ This package contains the Virtual Coach implementation and interfaces to the Neu Platform backend services. """ -from pynrp.version import VERSION as __version__ # pylint: disable=W0611 -from pynrp.virtual_coach import VirtualCoach \ No newline at end of file +from pynrp.version import VERSION as __version__ # pylint: disable=W0611 \ No newline at end of file -- GitLab