Skip to content

Commit

Permalink
- Update to 3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
makeasnek committed Dec 1, 2023
1 parent d3dd8ea commit 5ce3419
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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()
)
)
Expand Down

0 comments on commit 5ce3419

Please sign in to comment.