From ee5eb7563086a182ab1cbc11cde816ff50efe35c Mon Sep 17 00:00:00 2001 From: Arjun Purushothaman Date: Tue, 3 Jun 2025 14:38:56 +0100 Subject: [PATCH] Add pyproject.toml. address https://github.com/ARM-software/devlib/issues/702 Fix the pip warning explained here: https://github.com/pypa/pip/issues/11457 By following this procedure: https://github.com/pypa/pip/issues/11457#issuecomment-2339037577 --- pyproject.toml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 pyproject.toml diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 000000000..cc8b8708b --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,5 @@ +[build-system] +requires = [ + "setuptools>=80.9.0", +] +build-backend = "setuptools.build_meta" \ No newline at end of file