Fix unit test

This commit is contained in:
Joe Rickerby
2021-01-02 19:25:09 +00:00
parent 8d045992fa
commit 7cab712592
+1 -1
View File
@@ -94,7 +94,7 @@ def get_default_repair_command(platform):
if platform == 'linux':
return 'auditwheel repair -w {dest_dir} {wheel}'
elif platform == 'macos':
return 'delocate-listdeps {wheel} && delocate-wheel --require-archs x86_64 -w {dest_dir} {wheel}'
return 'delocate-listdeps {wheel} && delocate-wheel --require-archs {delocate_archs} -w {dest_dir} {wheel}'
elif platform == 'windows':
return ''
else: