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 c2f4f8a commit eddc654Copy full SHA for eddc654
src/auditwheel/repair.py
@@ -119,7 +119,7 @@ def repair_wheel(
119
patcher.replace_needed(path, *replacements)
120
121
if update_tags:
122
- ctx.out_wheel = add_platforms(ctx, abis, get_replace_platforms(abis[0]))
+ output_wheel = add_platforms(ctx, abis, get_replace_platforms(abis[0]))
123
124
if strip:
125
libs_to_strip = [path for (_, path) in soname_map.values()]
src/auditwheel/wheeltools.py
@@ -273,6 +273,7 @@ def add_platforms(
273
write_pkg_info(info_fname, info)
274
else:
275
logger.info("No WHEEL info change needed.")
276
+ wheel_ctx.out_wheel = out_wheel
277
return out_wheel
278
279
0 commit comments