Skip to content

Commit 76074b7

Browse files
committed
Fix exodus.py to install with the proper auditwheel platform
Updates to auditwheel have deprecated the previous format for the platform. For now use auto to determine the system for which to build.
1 parent 62c7b02 commit 76074b7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
)
3030

3131
wheels = os.listdir("dist")
32-
platform = "linux_x86_64"
32+
platform = "auto"
3333
subprocess.run(["python", "-m", "pip", "install", "--user", "auditwheel", "patchelf>=0.14"])
3434
for wheel in [x for x in wheels if x.endswith(".whl")]:
3535
subprocess.run(["python", "-m", "auditwheel", "repair", "--plat", platform, f"dist/{wheel}"])

0 commit comments

Comments
 (0)