From d23ef1dab7d9af1c317928a5141eac6ccb28d1b0 Mon Sep 17 00:00:00 2001 From: Mitchell Stokes Date: Sun, 13 Oct 2024 16:41:16 -0700 Subject: [PATCH] pyproject: Require at least setuptools 61.0 This version added support for pyproject.toml files. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 07d6aa0..25aa7c5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,7 +24,7 @@ dependencies = [ "panda3d-blend2bam >= 0.24.0", "tomli >= 2.0.1", "rich ~= 13.5.0", - 'setuptools; python_version >= "3.12"', + "setuptools >= 61.0", ] requires-python = ">= 3.8"