From 81d32d7f51c267beb33e5499840299c75f25cf5f Mon Sep 17 00:00:00 2001 From: David Minton Date: Tue, 20 Feb 2024 09:45:03 -0500 Subject: [PATCH] Updated build requirements to fix issues that arise due to using older versions of scikit-build-core and cmake --- pyproject.toml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index c41016fd0..8e2f5965c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -48,9 +48,8 @@ Repository = 'https://github.itap.purdue.edu/MintonGroup/swiftest' [build-system] requires = [ - "scikit-build-core", + "scikit-build-core>=0.8", "cython>=3.0", - "cmake", "pyproject_metadata", "pytest", "pathspec", @@ -68,6 +67,8 @@ requires = [ build-backend = "scikit_build_core.build" [tool.scikit-build] +cmake.version = ">=3.24.3" +ninja.version = ">=1.11.1" cmake.args = ["-DUSE_SIMD=OFF"] sdist.include = ["src/globals/globals_module.f90.in","swiftest/*.py","swiftest/*.pyx","swiftest/*.h"] build-dir = "build/{wheel_tag}"