summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--NEWS2
-rwxr-xr-xsetup.py1
2 files changed, 3 insertions, 0 deletions
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',