Skip to content

Commit

Permalink
Fix versions
Browse files Browse the repository at this point in the history
Signed-off-by: Dan Ryan <dan@danryan.co>
  • Loading branch information
techalchemy committed Oct 10, 2018
1 parent 0a56224 commit 7df1e85
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pipenv/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -492,10 +492,10 @@ def resolve_deps(
name, _entry = req.pipfile_entry
entry = {}
if isinstance(_entry, six.string_types):
entry["version"] = _entry
entry["version"] = _entry.lstrip("=")
else:
entry["version"] = version
entry.update(_entry)
entry["version"] = version
entry["name"] = name
# if index:
# d.update({"index": index})
Expand Down

0 comments on commit 7df1e85

Please sign in to comment.