changeset 468:8e42048649f7

install (setup): updated classifiers to reflect minimun Python version
author Goffi <goffi@goffi.org>
date Sat, 20 Mar 2021 20:59:53 +0100
parents 3693c662fa88
children f0d497b8f57c
files setup.py
diffstat 1 files changed, 1 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/setup.py	Sat Mar 20 14:38:53 2021 +0100
+++ b/setup.py	Sat Mar 20 20:59:53 2021 +0100
@@ -65,7 +65,6 @@
     url="https://salut-a-toi.org",
     classifiers=[
         "Programming Language :: Python :: 3 :: Only",
-        "Programming Language :: Python :: 3.6",
         "Programming Language :: Python :: 3.7",
         "Programming Language :: Python :: 3.8",
         "Programming Language :: Python :: 3.9",
@@ -92,5 +91,5 @@
     use_scm_version=cagou_dev_version if is_dev_version else False,
     install_requires=install_requires,
     package_data={"": ["*.kv"], "cagou": ["VERSION"]},
-    python_requires=">=3.6",
+    python_requires=">=3.7",
 )