From 3abbad7ed5274c156ef56a60775df79aab4ca341 Mon Sep 17 00:00:00 2001 From: messense Date: Thu, 14 Mar 2024 09:04:57 +0800 Subject: [PATCH] Update maturin/__init__.py --- maturin/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maturin/__init__.py b/maturin/__init__.py index 64f0e52f..30eda132 100644 --- a/maturin/__init__.py +++ b/maturin/__init__.py @@ -77,7 +77,7 @@ def _build_wheel( if pep517_args: options.extend(pep517_args) - if "--compatibility" not in options: + if "--compatibility" not in options and "--manylinux" not in options: # default to off if not otherwise specified options = ["--compatibility", "off", *options]