From cf50a5986cb70a7eeefd7cfb4da501b4a8318213 Mon Sep 17 00:00:00 2001 From: "Kai A. Hiller" Date: Tue, 11 Oct 2022 16:04:07 +0200 Subject: [PATCH] Require at least setuptools version 61 Use of the automatic discovery feature was introduced with PR #27. The feature is only available in setuptools version 61 and later, though, which this change documents in pyproject.toml. Signed-off-by: Kai A. Hiller --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 30c7e9a..ecbfd06 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [build-system] -requires = ["setuptools", "wheel"] +requires = ["setuptools>=61", "wheel"] build-backend = "setuptools.build_meta" [tool.isort]