Skip to content

Commit 4e476ce

Browse files
authored
Merge pull request #3384 from alexallah/fix-selective-upgrade-unhashable-error
Fix unhashable type error in --selective-upgrade
2 parents d4d54ee + c433262 commit 4e476ce

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

news/3384.bugfix.rst

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Fix unhashable type error during ``$ pipenv install --selective-upgrade``

pipenv/core.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1829,7 +1829,7 @@ def do_install(
18291829
if not is_star(section[package__name]) and is_star(package__val):
18301830
# Support for VCS dependencies.
18311831
package_args[i] = convert_deps_to_pip(
1832-
{packages: section[package__name]}, project=project, r=False
1832+
{package__name: section[package__name]}, project=project, r=False
18331833
)[0]
18341834
except KeyError:
18351835
pass

0 commit comments

Comments
 (0)