From cd263cf0cbaecc534a393274cdd5cce572c21ab6 Mon Sep 17 00:00:00 2001 From: Gertjan van Zwieten Date: Mon, 21 Mar 2022 15:34:32 +0100 Subject: [PATCH] bump required Python version to >=3.7 Python version 3.5 reached end of life in September 2020, version 3.6 in December 2021. This patch drops support for both versions. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 0df513166..e6476ffef 100644 --- a/setup.py +++ b/setup.py @@ -35,7 +35,7 @@ packages=['nutils', 'nutils.matrix'], long_description=long_description, license='MIT', - python_requires='>=3.5', + python_requires='>=3.7', install_requires=['numpy>=1.17', 'treelog>=1.0b5', 'stringly'], extras_require=dict( docs=['Sphinx>=1.6', 'scipy>=0.13', 'matplotlib>=1.3'],