From 6aea6ffeba7f9c45fde648a04441e3103fb83cd3 Mon Sep 17 00:00:00 2001 From: Cornelius Roemer Date: Sun, 7 May 2023 17:49:43 +0200 Subject: [PATCH] Add `python_requires>=3.7` to setup.py Also update `python_version>=3.7` for `extras_require` --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 7d9faeb0e..4c26466c6 100644 --- a/setup.py +++ b/setup.py @@ -24,6 +24,7 @@ def get_version(): keywords = "Time-stamped phylogenies, phylogeography, virus evolution", url = "https://github.com/neherlab/treetime", packages=['treetime'], + python_requires=">=3.7", install_requires = [ 'biopython>=1.67,!=1.77,!=1.78', 'numpy>=1.10.4', @@ -31,7 +32,7 @@ def get_version(): 'scipy>=0.16.1' ], extras_require = { - ':python_version >= "3.6"':['matplotlib>=2.0'], + ':python_version >= "3.7"':['matplotlib>=2.0'], }, classifiers=[ "Development Status :: 5 - Production/Stable",