From 10329cabdc5b77c82522e05c89af6d0ed0e5270a Mon Sep 17 00:00:00 2001 From: "Thomas J. Fan" Date: Mon, 20 Feb 2023 10:44:43 -0500 Subject: [PATCH 1/4] MAINT Raise upper bound for setuptools [cd build] --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index ec79ca21fc63a..7b6ff8fae10a7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [build-system] # Minimum requirements for the build system to execute. requires = [ - "setuptools<60.0", + "setuptools<=67.3.2", "wheel", "Cython>=0.29.33", From 11bfadffbeab04a203b01084593d32c7199bbe76 Mon Sep 17 00:00:00 2001 From: "Thomas J. Fan" Date: Mon, 20 Feb 2023 11:24:10 -0500 Subject: [PATCH 2/4] Apply suggestions from code review Co-authored-by: Adam J. Stewart --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 7b6ff8fae10a7..fc954b2955d0e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [build-system] # Minimum requirements for the build system to execute. requires = [ - "setuptools<=67.3.2", + "setuptools<68", "wheel", "Cython>=0.29.33", From 37c4dcc048952d6773eab505a67036615bebb345 Mon Sep 17 00:00:00 2001 From: "Thomas J. Fan" Date: Tue, 21 Feb 2023 10:08:05 -0500 Subject: [PATCH 3/4] ENH Do not have a upper limit on setuptools --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index fc954b2955d0e..298eded146149 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [build-system] # Minimum requirements for the build system to execute. requires = [ - "setuptools<68", + "setuptools", "wheel", "Cython>=0.29.33", From 3c6c51e409566f73241188fdf6dbec26b3a182e7 Mon Sep 17 00:00:00 2001 From: "Thomas J. Fan" Date: Tue, 21 Feb 2023 10:16:40 -0500 Subject: [PATCH 4/4] CI Trigger CI [cd build]