From 2e7d6ac5e05013038b58be63f2ea7a27b1d557a5 Mon Sep 17 00:00:00 2001 From: Luke Hendrick Date: Fri, 19 Jul 2024 10:04:08 -0500 Subject: [PATCH] Limit setuptools install to version greater than 3.12 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index ca3eee3..ee87b2f 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ 'pyyaml', ], extras_require={ - 'configure': ['setuptools'], + 'configure': ['setuptools; python_version >= "3.12"'], 'saml': ['xmltodict'], 'fuzzy': ['python-levenshtein'], 'console': ['awsume-console-plugin'],