There was an error while loading. Please reload this page.
1 parent 86966fb commit 5c2c663Copy full SHA for 5c2c663
1 file changed
setup.py
@@ -6,7 +6,7 @@ def get_requirements():
6
reqs = []
7
for filename in ["requirements-base.txt", "requirements-dashboard.txt", "requirements-setuptools.txt"]:
8
with open(filename, "r") as f:
9
- reqs += [x.strip() for x in f.readlines() if x.strip() and not (x.strip().startswith("#") or x.strip().startswith("git+git"))]
+ reqs += [x.strip().split(";")[0] for x in f.readlines() if x.strip() and not (x.strip().startswith("#") or x.strip().startswith("git+git"))]
10
return reqs
11
12
0 commit comments