From 0e55964d1f811415f42fbe9f9aa979cac3a19693 Mon Sep 17 00:00:00 2001 From: James Lamb Date: Fri, 31 Jan 2025 16:49:46 -0600 Subject: [PATCH] disallow fallback to Make in wheel builds --- python/cuproj/pyproject.toml | 2 +- python/cuspatial/pyproject.toml | 2 +- python/libcuspatial/pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/python/cuproj/pyproject.toml b/python/cuproj/pyproject.toml index d2c67c996..8ed1bf620 100644 --- a/python/cuproj/pyproject.toml +++ b/python/cuproj/pyproject.toml @@ -96,7 +96,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.exclude = ["*.clang-format"] diff --git a/python/cuspatial/pyproject.toml b/python/cuspatial/pyproject.toml index 8e8291966..1451490de 100644 --- a/python/cuspatial/pyproject.toml +++ b/python/cuspatial/pyproject.toml @@ -110,7 +110,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 = ["cuspatial"] diff --git a/python/libcuspatial/pyproject.toml b/python/libcuspatial/pyproject.toml index 22f6b02d8..ec2c31f09 100644 --- a/python/libcuspatial/pyproject.toml +++ b/python/libcuspatial/pyproject.toml @@ -53,7 +53,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 = ["libcuspatial"] wheel.install-dir = "libcuspatial"