Merge pull request #3384 from alexallah/fix-selective-upgrade-unhashable-error

Fix unhashable type error in --selective-upgrade
This commit is contained in:
Frost Ming
2018-12-15 21:54:31 +08:00
committed by GitHub
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -0,0 +1 @@
Fix unhashable type error during ``$ pipenv install --selective-upgrade``
+1 -1
View File
@@ -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