mirror of
https://github.com/python/cpython.git
synced 2024-12-04 07:15:09 +08: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
@ -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…
Reference in New Issue
Block a user