Skip to content

Commit

Permalink
Setup fix for installing libraries from commit hash (#1539)
Browse files Browse the repository at this point in the history
  • Loading branch information
delliott90 authored Jul 24, 2023
1 parent 666c307 commit f069e1c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit f069e1c

Please sign in to comment.