Skip to content
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

Get rid full file path #7898

Closed
wants to merge 11 commits into from
1 change: 1 addition & 0 deletions news/7815.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This change will switch from using full file path for wheel to using just the name of the package.
microcat49 marked this conversation as resolved.
Show resolved Hide resolved
3 changes: 1 addition & 2 deletions src/pip/_internal/operations/prepare.py
Original file line number Diff line number Diff line change
Expand Up @@ -376,8 +376,7 @@ def prepare_linked_requirement(

# TODO: Breakup into smaller functions
if link.scheme == 'file':
path = link.file_path
logger.info('Processing %s', display_path(path))
logger.info('Processing %s (cached)', req.name)
microcat49 marked this conversation as resolved.
Show resolved Hide resolved
else:
logger.info('Collecting %s', req.req or req)

Expand Down