2
0
mirror of https://github.com/Nick80835/microbot synced 2025-08-29 13:38:55 +00:00

we need python 3.9 now

This commit is contained in:
Nick80835 2023-10-16 19:01:36 -04:00
parent 115fa99209
commit 22f51784f5

View File

@ -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()