From 21bc9ce79fc431c822f970d7dd7bdbe10da56857 Mon Sep 17 00:00:00 2001 From: Konrad Weihmann Date: Thu, 9 Feb 2023 20:29:38 +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.6.*' Signed-off-by: Konrad Weihmann --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 23d8d6a..fda21eb 100644 --- a/setup.cfg +++ b/setup.cfg @@ -48,7 +48,7 @@ zip_safe = false setup_requires = setuptools_scm[toml] >= 4 -python_requires = >=3.6.* +python_requires = >=3.6 install_requires = attrs >= 18.1, !=20.1.0