From 18272c5838090a74dab8e121a507ba5b6284bfb1 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Thu, 20 Jun 2024 12:26:10 -0400 Subject: [PATCH] lower setuptools lower bound to suit python 2.7 looks like 44.x is the latest for 2.7. not sure how this passed on CI when we had it at 60? Change-Id: I9d351ef855de9d84482c458f22118b4f7b40f763 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index fb4c8e64ca..891120ab7e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ build-backend = "setuptools.build_meta" requires = [ # avoid moving to https://github.com/pypa/setuptools/issues/3593 # until we're ready - "setuptools>=61.0,<69.3", + "setuptools>=44,<69.3", ] [tool.black] -- 2.47.2