Update required Python version to 3.6+ (!1879)

We need Python 3.5+ for recursive (**) globs.
While we are at it, we might as well require Python 3.6
so we can use f-strings in the future.
This commit is contained in:
Minecrell 2020-03-07 12:04:27 +01:00 committed by Oliver Smith
parent 5f6b8eaf0e
commit 527f5a9512
No known key found for this signature in database
GPG key ID: 5AE7F5513E0885CB
3 changed files with 6 additions and 6 deletions

View file

@ -45,15 +45,15 @@ setup(
author_email='info@postmarketos.org',
url='https://www.postmarketos.org',
license='GPLv3',
python_requires='>=3.4',
python_requires='>=3.6',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
keywords='postmarketos pmbootstrap',
packages=find_packages(exclude=['aports', 'keys', 'test']),