Skip to content

Commit

Permalink
Merge pull request #13 from mattrobenolt/patch-1
Browse files Browse the repository at this point in the history
Allow specifying optional dependencies to ignore
  • Loading branch information
dcramer committed Jan 2, 2014
2 parents fa9b3ec + 163bb61 commit af13349
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/piplint/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,8 @@ def is_requirements_line(line):
return False
if line.startswith('#'):
return False
if line.endswith(' # optional'):
return False
if line.startswith('-e'):
return True
if line.startswith('-'):
Expand Down

0 comments on commit af13349

Please sign in to comment.