-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Move dependency info and install order into Resolver #4925
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
pradyunsg
merged 4 commits into
pypa:master
from
pradyunsg:resolver/move-dependency-info-and-install-order
Mar 29, 2018
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
01b2b85
Move installation order code out of RequirementSet
pradyunsg 2e5715e
Move installation order computation into Resolver
pradyunsg 8803a31
Move dependency data into resolver
pradyunsg 6caca65
Merge branch 'master' into resolver/move-dependency-info-and-install-…
pradyunsg File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,69 @@ | ||
from __future__ import absolute_import | ||
|
||
import logging | ||
|
||
from .req_install import InstallRequirement | ||
from .req_set import RequirementSet | ||
from .req_file import parse_requirements | ||
from pip._internal.utils.logging import indent_log | ||
|
||
|
||
__all__ = [ | ||
"RequirementSet", "InstallRequirement", | ||
"parse_requirements", | ||
"parse_requirements", "install_given_reqs", | ||
] | ||
|
||
logger = logging.getLogger(__name__) | ||
|
||
|
||
def install_given_reqs(to_install, install_options, global_options=(), | ||
*args, **kwargs): | ||
""" | ||
Install everything in the given list. | ||
|
||
(to be called after having downloaded and unpacked the packages) | ||
""" | ||
|
||
if to_install: | ||
logger.info( | ||
'Installing collected packages: %s', | ||
', '.join([req.name for req in to_install]), | ||
) | ||
|
||
with indent_log(): | ||
for requirement in to_install: | ||
if requirement.conflicts_with: | ||
logger.info( | ||
'Found existing installation: %s', | ||
requirement.conflicts_with, | ||
) | ||
with indent_log(): | ||
uninstalled_pathset = requirement.uninstall( | ||
auto_confirm=True | ||
) | ||
try: | ||
requirement.install( | ||
install_options, | ||
global_options, | ||
*args, | ||
**kwargs | ||
) | ||
except: | ||
should_rollback = ( | ||
requirement.conflicts_with and | ||
not requirement.install_succeeded | ||
) | ||
# if install did not succeed, rollback previous uninstall | ||
if should_rollback: | ||
uninstalled_pathset.rollback() | ||
raise | ||
else: | ||
should_commit = ( | ||
requirement.conflicts_with and | ||
requirement.install_succeeded | ||
) | ||
if should_commit: | ||
uninstalled_pathset.commit() | ||
requirement.remove_temporary_source() | ||
|
||
return to_install |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not too happy I had to do this but I'm pretty sure that this function will move into a nicer place after a refactor of InstallRequirement, which I'll tackle after the Resolver is swapped in with the one from zazo.