Skip to content

Commit

Permalink
Fix marker generation and update lockfile
Browse files Browse the repository at this point in the history
Signed-off-by: Dan Ryan <dan@danryan.co>
  • Loading branch information
techalchemy committed May 27, 2019
1 parent 6d5a510 commit a035132
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 147 deletions.
193 changes: 47 additions & 146 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pipenv/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -1755,7 +1755,7 @@ def translate_markers(pipfile_entry):
marker_set = set()
if "markers" in new_pipfile:
marker_str = new_pipfile.pop("markers")
if marker_str is not None:
if marker_str:
marker = str(Marker(marker_str))
if 'extra' not in marker:
marker_set.add(marker)
Expand Down

0 comments on commit a035132

Please sign in to comment.