From 22f51784f501ab4b6ac4af0fe843d40981eb73db Mon Sep 17 00:00:00 2001 From: Nick80835 Date: Mon, 16 Oct 2023 19:01:36 -0400 Subject: [PATCH] we need python 3.9 now --- ubot/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ubot/__init__.py b/ubot/__init__.py index 8f916b8..072401a 100644 --- a/ubot/__init__.py +++ b/ubot/__init__.py @@ -14,8 +14,8 @@ from .custom import ExtendedEvent from .loader import Loader from .settings import Settings -if sys.version_info.major < 3 or (sys.version_info.major == 3 and sys.version_info.minor < 6): - print("This program requires at least Python 3.6.0 to work correctly, exiting.") +if sys.version_info.major < 3 or (sys.version_info.major == 3 and sys.version_info.minor < 9): + print("This program requires at least Python 3.9.0 to work correctly, exiting.") sys.exit(1) startup_time = time()