From d2bcff3162dd7d6fc185173ca741819362bc5214 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pablo=20Correa=20G=C3=B3mez?= Date: Thu, 22 Feb 2024 21:14:47 +0100 Subject: [PATCH] Drop support for python3.7 and python3.8 (MR 2265) Even Debian oldstable is on python3.9 now, so should be safe, and should also help the typing process that has now started --- pmb/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pmb/__init__.py b/pmb/__init__.py index a52727ed..52911ee1 100644 --- a/pmb/__init__.py +++ b/pmb/__init__.py @@ -19,8 +19,8 @@ __version__ = "2.2.1" # Python version check version = sys.version_info -if version < (3, 7): - print("You need at least Python 3.7 to run pmbootstrap") +if version < (3, 9): + print("You need at least Python 3.9 to run pmbootstrap") print("(You are running it with Python " + str(version.major) + "." + str(version.minor) + ")") sys.exit()