# HG changeset patch # User Goffi # Date 1616270393 -3600 # Node ID 8e42048649f7f6fd9a05ec96804cb8e3363e034a # Parent 3693c662fa88f8ebbc7d71eb81371a5ed34e4682 install (setup): updated classifiers to reflect minimun Python version diff -r 3693c662fa88 -r 8e42048649f7 setup.py --- 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", )