From 26f40110d0dc42f3f62d56c285aed0ffc43e2cfd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roberto=20Bani=C4=87?= Date: Fri, 14 Apr 2023 00:28:01 +0200 Subject: [PATCH] Bump minimum Python version to 3.9 --- main.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/main.py b/main.py index f4779d9..51917e2 100644 --- a/main.py +++ b/main.py @@ -1,9 +1,9 @@ import sys if __name__ == "__main__": - # Check python version 3.6 or higher - if not (3, 6) <= tuple(map(int, sys.version_info[:2])): - print("This script requires Python 3.6 or higher") + # Check python version 3.9 or higher + if not (3, 9) <= tuple(map(int, sys.version_info[:2])): + print("This script requires Python 3.9 or higher") sys.exit(1) from src.main import main