forked from Mirror/pmbootstrap
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:
parent
5f6b8eaf0e
commit
527f5a9512
3 changed files with 6 additions and 6 deletions
6
setup.py
6
setup.py
|
@ -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']),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue