From 9c8ff08c09f58e9856d9807072e91bb3cbdb144a Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Mon, 23 Sep 2024 06:47:36 -0500 Subject: [PATCH] ARROW-248 Set upper bound for distutils (#235) ARROW-248 Set upper bound for disutils --- bindings/python/pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bindings/python/pyproject.toml b/bindings/python/pyproject.toml index 0741e9c2..c925fafd 100644 --- a/bindings/python/pyproject.toml +++ b/bindings/python/pyproject.toml @@ -1,6 +1,7 @@ [build-system] requires = [ - "setuptools>=61.0", + # ARROW-248, pin to less than 72.2. + "setuptools>=70,<72.2", "cython>=3.0", # Must be kept in sync with "project.dependencies" below. "pyarrow>=17.0,<17.1.0",