From afd6d2709f6211fa982f4bac93cfc813d42c5d08 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Doktor?= Date: Mon, 10 Aug 2026 12:38:47 +0200 Subject: [PATCH] pyproject: Revert the required setuptools to >=61.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit while bumping the setuptools for testing we also increased our minimal setuptools for deployment, which is not required and blocks deployment on python <3.10 which we still support. Revert the minimum back to the 61.0. Signed-off-by: Lukáš Doktor --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 571f8f6..cc679e7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [build-system] -requires = ["setuptools>=83.0.0", "setuptools-scm>=8"] +requires = ["setuptools>=61.0", "setuptools-scm>=8"] build-backend = "setuptools.build_meta" [project]