mirror of
https://github.com/python/cpython.git
synced 2025-11-01 18:51:43 +00:00
Force option should be applied to a single package, not recursively
to its dependencies. Fixes #733819.
This commit is contained in:
parent
4eec95ad2a
commit
0576d0a48a
1 changed files with 1 additions and 1 deletions
|
|
@ -921,7 +921,7 @@ class PimpInstaller:
|
|||
prereqs = package.prerequisites()
|
||||
for pkg, descr in prereqs:
|
||||
if pkg:
|
||||
self._prepareInstall(pkg, force, recursive)
|
||||
self._prepareInstall(pkg, False, recursive)
|
||||
else:
|
||||
self._curmessages.append("Problem with dependency: %s" % descr)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue