From 324e52a0d4b7ffcdca818070c60d3a98b572193b Mon Sep 17 00:00:00 2001 From: Alexander Rashed Date: Tue, 22 Oct 2024 15:38:12 +0200 Subject: [PATCH 1/2] remove setuptools limit in build-system.requires --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index d60f18aac6dcb..76b104a02db26 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ # LocalStack project configuration [build-system] -requires = ['setuptools>=64,<=75.1.0', 'wheel', 'plux>=1.10', "setuptools_scm>=8.1"] +requires = ['setuptools>=64', 'wheel', 'plux>=1.10', "setuptools_scm>=8.1"] build-backend = "setuptools.build_meta" [project] From 8f75abf5fdf731bd3f35df5a7c059e5a9a6568a1 Mon Sep 17 00:00:00 2001 From: Alexander Rashed Date: Tue, 22 Oct 2024 15:42:20 +0200 Subject: [PATCH 2/2] bump minimum version of plux in build-system.requires --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 76b104a02db26..8c2473919db87 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ # LocalStack project configuration [build-system] -requires = ['setuptools>=64', 'wheel', 'plux>=1.10', "setuptools_scm>=8.1"] +requires = ['setuptools>=64', 'wheel', 'plux>=1.12', "setuptools_scm>=8.1"] build-backend = "setuptools.build_meta" [project]