Skip to content

Commit

Permalink
fix: Handle environment markers in requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
nicfit committed Dec 31, 2018
1 parent c6f9af4 commit ddcdb7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -90,7 +90,7 @@ def requirements_yaml():
reqs[curr] = []
else:
assert line[0] == "-"
r = line[1:].strip().split()[0]
r = line[1:].strip()
if r:
reqs[curr].append(r.strip())

Expand Down

0 comments on commit ddcdb7e

Please sign in to comment.