Skip to content

Commit

Permalink
Merge pull request #3384 from alexallah/fix-selective-upgrade-unhasha…
Browse files Browse the repository at this point in the history
…ble-error

Fix unhashable type error in --selective-upgrade
  • Loading branch information
frostming committed Dec 15, 2018
2 parents d4d54ee + c433262 commit 4e476ce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions news/3384.bugfix.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix unhashable type error during ``$ pipenv install --selective-upgrade``
2 changes: 1 addition & 1 deletion pipenv/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -1829,7 +1829,7 @@ def do_install(
if not is_star(section[package__name]) and is_star(package__val):
# Support for VCS dependencies.
package_args[i] = convert_deps_to_pip(
{packages: section[package__name]}, project=project, r=False
{package__name: section[package__name]}, project=project, r=False
)[0]
except KeyError:
pass
Expand Down

0 comments on commit 4e476ce

Please sign in to comment.