We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30f2740 commit 2a9b77aCopy full SHA for 2a9b77a
src/pip/_internal/wheel.py
@@ -1170,9 +1170,6 @@ def build(
1170
python_tag=python_tag,
1171
)
1172
if wheel_file:
1173
- self.wheel_filenames.append(
1174
- os.path.relpath(wheel_file, output_dir)
1175
- )
1176
if should_unpack:
1177
# XXX: This is mildly duplicative with prepare_files,
1178
# but not close enough to pull out to a single common
@@ -1212,6 +1209,9 @@ def build(
1212
1209
1213
1210
build_failure.append(req)
1214
1211
continue
+ self.wheel_filenames.append(
+ os.path.relpath(wheel_file, output_dir)
+ )
1215
build_success.append(req)
1216
else:
1217
0 commit comments