From 2d7d92c99fc7d23770489aa1946a2bc2d5d1d82b Mon Sep 17 00:00:00 2001 From: John Ingve Olsen Date: Mon, 25 Nov 2024 15:16:56 +0100 Subject: [PATCH] Limit ninja version due to bug in the latest version There is a bug in the latest ninja package in PyPI, version 1.11.1.2, that causes ninja to call itself recursively until the system runs out of memory. This commit limits ninja to the previous version, 1.11.1.1, to prevent the issue. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 20d6d757..338c9b2f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,6 +4,6 @@ requires = [ "cmake>=3.24.0", "conan>=2,<3", - "ninja", + "ninja<=1.11.1.1", "scikit-build", ]