From 8bdaba0322ac02b60f3bf080a730ed9b97c153cf Mon Sep 17 00:00:00 2001 From: relikd Date: Mon, 9 Jun 2025 00:33:47 +0200 Subject: [PATCH] fix: py min version 3.6 due to f-string usage --- setup.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/setup.py b/setup.py index b4ec5ec..72b9c7e 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ setup( }, long_description_content_type="text/markdown", long_description=longdesc, - python_requires='>=3.5', + python_requires='>=3.6', keywords=[ 'abcddb', 'abcd', @@ -41,7 +41,6 @@ setup( 'Programming Language :: Python', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3 :: Only', - 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8',