From 8e2c686f643fb1715fc49819b83c9e9e90f2e181 Mon Sep 17 00:00:00 2001 From: mayeut Date: Sat, 22 May 2021 10:04:24 +0200 Subject: [PATCH] Remove cmake dependency in pyproject.toml While cmake is a dependency needed to build ninja, there are many ways to install it on a system. Forcing the cmake python distribution to be used is not appropriate here. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 4f974fc..80c0c51 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,3 +1,3 @@ [build-system] -requires = ["setuptools>=42", "wheel", "scikit-build", "cmake"] +requires = ["setuptools>=42", "wheel", "scikit-build"] build-backend = "setuptools.build_meta"