From 5ce3419e9440cb1e215eae6106614a5c39a7839e Mon Sep 17 00:00:00 2001 From: makeasnek Date: Thu, 30 Nov 2023 21:36:48 -0800 Subject: [PATCH] - Update to 3.1 --- main.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/main.py b/main.py index f5b674f..9bde696 100644 --- a/main.py +++ b/main.py @@ -72,7 +72,7 @@ BENCHMARKING_DELAY_IN_DAYS: float = 160 SKIP_BENCHMARKING: bool = False DEV_FEE: float = 0.05 -VERSION = 3.0 +VERSION = 3.1 DEV_RPC_PORT = 31418 LOG_LEVEL = "WARNING" START_TEMP: int = 65 @@ -4534,15 +4534,15 @@ def create_default_database() -> Dict[str, Any]: python_minor = sys.version_info.minor if python_major < 3: print( - "Error: This program requires python 3.6 or higher to run, you are running it as Python {}".format( + "Error: This program requires python 3.8 or higher to run, you are running it as Python {}".format( platform.python_version() ) ) input("Press enter to exit") quit() - elif python_major == 3 and python_minor < 6: + elif python_major == 3 and python_minor < 8: print( - "Error: This program requires python 3.6 or higher to run, you are running it as Python {}".format( + "Error: This program requires python 3.8 or higher to run, you are running it as Python {}".format( platform.python_version() ) )