mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-04 22:40:12 +01:00
set minimum Python version to 3.4
We use contructs introduced in 3.4, and 3.4 is really widely available. https://setuptools.readthedocs.io/en/latest/setuptools.html#new-and-changed-setup-keywords
This commit is contained in:
parent
30c0d5f4d5
commit
96e71bfdb3
2
setup.py
2
setup.py
@ -17,6 +17,7 @@ setup(name='fdroidserver',
|
||||
author='The F-Droid Project',
|
||||
author_email='team@f-droid.org',
|
||||
url='https://f-droid.org',
|
||||
license='AGPL-3.0',
|
||||
packages=['fdroidserver', 'fdroidserver.asynchronousfilereader'],
|
||||
scripts=['fdroid', 'fd-commit', 'makebuildserver'],
|
||||
data_files=[
|
||||
@ -29,6 +30,7 @@ setup(name='fdroidserver',
|
||||
'examples/public-read-only-s3-bucket-policy.json',
|
||||
'examples/template.yml']),
|
||||
],
|
||||
python_requires='>=3.4',
|
||||
install_requires=[
|
||||
'clint',
|
||||
'GitPython',
|
||||
|
Loading…
Reference in New Issue
Block a user