From 0b02f531c1ade7f13cbe46c6ffe9476805ef5bde Mon Sep 17 00:00:00 2001 From: Luis Garcia Date: Fri, 21 Feb 2025 12:10:53 -0700 Subject: [PATCH] Force python 3.12 or greater Signed-off-by: Luis Garcia --- main.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/main.py b/main.py index 51917e2..d38ea06 100644 --- a/main.py +++ b/main.py @@ -1,9 +1,9 @@ import sys if __name__ == "__main__": - # 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") + # Check python version 3.12 or higher + if not (3, 12) <= tuple(map(int, sys.version_info[:2])): + print("This script requires Python 3.12 or higher") sys.exit(1) from src.main import main