From 96e71bfdb38c39637052f453dbd1a57ffb00ecd1 Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Fri, 15 Sep 2017 11:31:18 +0200 Subject: [PATCH] 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 --- setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.py b/setup.py index 6ee8c3a8..ef153039 100644 --- a/setup.py +++ b/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', -- 2.30.2