From 08d0afbf1fd083046487abc0a0c7a86b8feac10d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jelmer=20Vernoo=C4=B3?= Date: Sun, 11 Apr 2021 21:39:59 +0100 Subject: Declare python3.5 requirement in setup.py. --- NEWS | 2 ++ setup.py | 1 + 2 files changed, 3 insertions(+) diff --git a/NEWS b/NEWS index 96dfe37..28329c3 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,7 @@ 0.9.10 UNRELEASED + * Declare python 3.5 requirement in setup.py. (Jelmer Vernooij) + 0.9.9 2021-04-10 * Drop various other python2 helpers, test on newer versions of Python. diff --git a/setup.py b/setup.py index d93852b..9e86117 100755 --- a/setup.py +++ b/setup.py @@ -14,6 +14,7 @@ setup(name="fastimport", url="https://github.com/jelmer/python-fastimport", packages=['fastimport', 'fastimport.tests', 'fastimport.processors'], test_suite="fastimport.tests.test_suite", + python_requires=">=3.5", scripts=[ 'bin/fast-import-query', 'bin/fast-import-filter', -- cgit v1.2.1