From 121a345c7ba3c7ade2109f7eb8a60f4bfe81fbfd Mon Sep 17 00:00:00 2001 From: Nick Hall Date: Mon, 31 Jul 2023 18:38:52 +0100 Subject: [PATCH] Update minimum python version --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 04dce55a3..12643c100 100755 --- a/setup.py +++ b/setup.py @@ -29,8 +29,8 @@ Gramps setuptools module. # check python version first import sys -if sys.version_info < (3, 5): - raise SystemExit("Gramps requires Python 3.5 or later.") +if sys.version_info < (3, 8): + raise SystemExit("Gramps requires Python 3.8 or later.") from setuptools import setup, Command