From 984f52c5a4f8ab2705177ee38a9d326be11fa713 Mon Sep 17 00:00:00 2001 From: Konrad Weihmann Date: Thu, 9 Feb 2023 18:53:34 +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 7d7cac1a..403f9df7 100644 --- a/setup.cfg +++ b/setup.cfg @@ -37,7 +37,7 @@ zip_safe = false setup_requires = setuptools_scm[toml] >= 4 -python_requires = >=3.6.* +python_requires = >=3.6 install_requires =