From 9c0d8a9dcc4fc124178bda8f7766d2293085b29b Mon Sep 17 00:00:00 2001 From: James Lamb Date: Fri, 31 Jan 2025 16:54:19 -0600 Subject: [PATCH] disallow fallback to Make in wheel builds --- dependencies.yaml | 2 +- python/cuml/pyproject.toml | 2 +- python/libcuml/pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dependencies.yaml b/dependencies.yaml index dc99975370..f1449ac436 100644 --- a/dependencies.yaml +++ b/dependencies.yaml @@ -388,7 +388,7 @@ dependencies: - *libcusparse114 cuda_wheels: specific: - - output_types: pyproject + - output_types: [requirements, pyproject] matrices: - matrix: cuda: "12.*" diff --git a/python/cuml/pyproject.toml b/python/cuml/pyproject.toml index 5d52e12859..a303075f6a 100644 --- a/python/cuml/pyproject.toml +++ b/python/cuml/pyproject.toml @@ -196,7 +196,7 @@ build-dir = "build/{wheel_tag}" cmake.build-type = "Release" cmake.version = "CMakeLists.txt" minimum-version = "build-system.requires" -ninja.make-fallback = true +ninja.make-fallback = false sdist.exclude = ["*tests*"] sdist.reproducible = true wheel.packages = ["cuml"] diff --git a/python/libcuml/pyproject.toml b/python/libcuml/pyproject.toml index 8225e86d62..f869d196e6 100644 --- a/python/libcuml/pyproject.toml +++ b/python/libcuml/pyproject.toml @@ -65,7 +65,7 @@ build-dir = "build/{wheel_tag}" cmake.build-type = "Release" cmake.version = "CMakeLists.txt" minimum-version = "build-system.requires" -ninja.make-fallback = true +ninja.make-fallback = false sdist.reproducible = true wheel.packages = ["libcuml"] wheel.install-dir = "libcuml"