From 6cad09f34a0d364241d660c13c13b5c46d6bc19a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tor=20Bj=C3=B6rgen?= Date: Fri, 24 Nov 2023 10:19:32 +0100 Subject: [PATCH] setup.py: Lockdown genmod, limit compatibility to python v3.8 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This is the currently only tested, supported python version. No other versions of python are currently supported. Signed-off-by: Tor Björgen --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index acf87c0..79a76bb 100644 --- a/setup.py +++ b/setup.py @@ -26,6 +26,7 @@ author_email = 'mans.magnusson@scilifelab.se', url = 'http://github.com/moonso/genmod', license = 'MIT License', + python_requires="~=3.8.0", install_requires=[ 'ped_parser >= 1.6.6', 'pytabix >= 0.1',