From 8ae4a763085ac90b6e27f01faa32df06dab0305a Mon Sep 17 00:00:00 2001 From: Angelos Katharopoulos Date: Tue, 12 Aug 2025 00:03:42 -0700 Subject: [PATCH] Use CMake <4.1 to avoid the nvpl error (#2489) --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 6fcd5d16c..4fc9675df 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,6 +2,6 @@ requires = [ "setuptools>=80", "nanobind==2.4.0", - "cmake>=3.25", + "cmake>=3.25,<4.1", ] build-backend = "setuptools.build_meta"