From 32bcc836c6c4cf6bd44a7c18ca3d9ee61b204be8 Mon Sep 17 00:00:00 2001 From: Wong Hoi Sing Edison Date: Thu, 4 Aug 2022 11:17:35 +0800 Subject: [PATCH] [1.5.0] Incorrectly List by Pypi as Available for Python < 3.7 `python_requires = >=3.4` should be updated as `python_requires = >=3.7`, else Pypi will still list it as available for Python < 3.7. Fixes #61 Signed-off-by: Wong Hoi Sing Edison --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 37d4a4a..5af94f7 100644 --- a/setup.cfg +++ b/setup.cfg @@ -27,7 +27,7 @@ classifier = package_dir = = src packages = find: -python_requires = >=3.4 +python_requires = >=3.7 install_requires = zip_safe = true