From dea6421c80251f1b44c62552f3c56f6cdf7129f4 Mon Sep 17 00:00:00 2001 From: messense Date: Tue, 13 Apr 2021 13:06:14 +0800 Subject: [PATCH] Fix pip install maturin on PowerPC platform This removes removed `auditwheel` feature, adds new `upload` feature --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 110df69af..721aa2267 100644 --- a/setup.py +++ b/setup.py @@ -64,7 +64,7 @@ def run(self): if platform.machine() in ("ppc64le", "ppc64", "powerpc"): cargo_args.extend( - ["--no-default-features", "--features=auditwheel,log,human-panic"] + ["--no-default-features", "--features=upload,log,human-panic"] ) cargo_args.extend(["--", "-C", "link-arg=-s"])