diff --git a/pyproject.toml b/pyproject.toml index c63335d..0d54b46 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ # Contact: qubitium@modelcloud.ai, x.com/qubitium [build-system] -requires = ["setuptools>=70", "wheel", "cmake>=3.27", "ninja"] +requires = ["setuptools>=80", "wheel", "cmake>=3.27", "ninja"] build-backend = "setuptools.build_meta" [project] diff --git a/setup_utils.py b/setup_utils.py index ba1b8d0..441dfd5 100644 --- a/setup_utils.py +++ b/setup_utils.py @@ -899,11 +899,13 @@ def _path_matches_host_multiarch(path: str, host_multiarch: set[str]) -> bool: lower = path.lower() for token in _UNSUPPORTED_MULTIARCH_TOKENS: if token in lower: + print(f"Skipping lib: {lower}") return False if not host_multiarch: return True for token in _KNOWN_MULTIARCH_TOKENS: if token in lower and token not in host_multiarch: + print(f"Skipping lib: {lower}") return False return True