Skip to content

Commit

Permalink
fixup! fixup! Make pip wheel cache what it built
Browse files Browse the repository at this point in the history
  • Loading branch information
sbidoul committed Nov 3, 2019
1 parent 30f2740 commit 2a9b77a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/pip/_internal/wheel.py
Original file line number Diff line number Diff line change
Expand Up @@ -1170,9 +1170,6 @@ def build(
python_tag=python_tag,
)
if wheel_file:
self.wheel_filenames.append(
os.path.relpath(wheel_file, output_dir)
)
if should_unpack:
# XXX: This is mildly duplicative with prepare_files,
# but not close enough to pull out to a single common
Expand Down Expand Up @@ -1212,6 +1209,9 @@ def build(
)
build_failure.append(req)
continue
self.wheel_filenames.append(
os.path.relpath(wheel_file, output_dir)
)
build_success.append(req)
else:
build_failure.append(req)
Expand Down

0 comments on commit 2a9b77a

Please sign in to comment.