From: Mike Bayer Date: Thu, 20 Jun 2024 16:26:10 +0000 (-0400) Subject: lower setuptools lower bound to suit python 2.7 X-Git-Tag: rel_1_4_53~15 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=18272c5838090a74dab8e121a507ba5b6284bfb1;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git 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 --- 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]