From f069e1cb46041d9ca226a37c29aeb3885f4c2d38 Mon Sep 17 00:00:00 2001 From: Danny Elliott Date: Mon, 24 Jul 2023 14:21:58 -0300 Subject: [PATCH] Setup fix for installing libraries from commit hash (#1539) --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index fa11df6cd..d4be85818 100644 --- a/setup.py +++ b/setup.py @@ -131,6 +131,7 @@ def fill_connectors(projects, modules_path): lines = f.readlines() lines = [x.strip() for x in lines] lines = list(filter(lambda s: (not s.startswith('#')) and len(s) > 0, lines)) + lines = list(filter(lambda s: (not 'git+' in s) and len(s)>0, lines)) install_requires.update(lines) install_requires = list(install_requires) print('install_requires: %s' % install_requires)