From 96f311f7d8dad2e9468a62246210998d64d1b10f Mon Sep 17 00:00:00 2001 From: Konrad Weihmann Date: Thu, 9 Feb 2023 20:35:03 +0000 Subject: [PATCH] setup.cfg: fix invalid version spec after PEP440 support has been removed in newer setuptools (v66+) this would otherwise result in an error like setuptools.extern.packaging.specifiers.InvalidSpecifier: Invalid specifier: '>=3.7.*' Signed-off-by: Konrad Weihmann --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index e32f34e..918a285 100644 --- a/setup.cfg +++ b/setup.cfg @@ -54,7 +54,7 @@ zip_safe = false setup_requires = setuptools_scm[toml] >= 4 -python_requires = >=3.7.* +python_requires = >=3.7 install_requires = click >= 6.7, !=7.0, !=8.0.3