From 6c9f34c8162610aef5a31e11b2fec0525eb1d579 Mon Sep 17 00:00:00 2001 From: opacam Date: Fri, 24 Apr 2020 20:38:24 +0200 Subject: [PATCH 1/2] :pushpin: Update classifiers & add python_requires --- setup.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/setup.py b/setup.py index 19a77bb756..ab75d7bfd1 100644 --- a/setup.py +++ b/setup.py @@ -88,6 +88,7 @@ def recursively_include(results, directory, patterns): description='Android APK packager for Python scripts and apps', long_description=long_description, long_description_content_type='text/markdown', + python_requires="==3.*,>=3.6.0", author='The Kivy team', author_email='kivy-dev@googlegroups.com', url='https://github.com/kivy/python-for-android', @@ -114,6 +115,9 @@ def recursively_include(results, directory, patterns): 'Operating System :: Android', 'Programming Language :: C', 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', 'Topic :: Software Development', 'Topic :: Utilities', ], From 6ec7e6f440d268b2b49c1ea6a99e24bb78e7b82d Mon Sep 17 00:00:00 2001 From: opacam Date: Fri, 24 Apr 2020 22:06:44 +0200 Subject: [PATCH 2/2] :ok_hand: Allow Python version > 3 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index ab75d7bfd1..2d8f5e9fa0 100644 --- a/setup.py +++ b/setup.py @@ -88,7 +88,7 @@ def recursively_include(results, directory, patterns): description='Android APK packager for Python scripts and apps', long_description=long_description, long_description_content_type='text/markdown', - python_requires="==3.*,>=3.6.0", + python_requires=">=3.6.0", author='The Kivy team', author_email='kivy-dev@googlegroups.com', url='https://github.com/kivy/python-for-android',