From 5169b6115ff348c1428f2b84c030d9e5d500edaa Mon Sep 17 00:00:00 2001 From: danibene <34680344+danibene@users.noreply.github.com> Date: Thu, 14 Mar 2024 15:18:17 -0400 Subject: [PATCH] remove quotes from version specification --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 4e01c4a..567c247 100644 --- a/setup.cfg +++ b/setup.cfg @@ -34,7 +34,7 @@ packages = find_namespace: include_package_data = True # Require a min/specific Python version (comma-separated conditions) -python_requires = ">=3.7, <3.11" +python_requires = >=3.7, <3.11 # Add here dependencies of your project (line-separated), e.g. requests>=2.2,<3.0. # Version specifiers like >=2.2,<3.0 avoid problems due to API changes in