From 865bb6a497848cfccab01498fd7c05774547e6a0 Mon Sep 17 00:00:00 2001 From: Ian McEwen Date: Sun, 7 Jul 2024 21:00:26 -0700 Subject: [PATCH] Remove python 3.8 warning. protobufs: v2.3.15 (brought in by merge) --- meshtastic/__main__.py | 3 --- meshtastic/util.py | 3 --- 2 files changed, 6 deletions(-) diff --git a/meshtastic/__main__.py b/meshtastic/__main__.py index e3c594a..87d23cb 100644 --- a/meshtastic/__main__.py +++ b/meshtastic/__main__.py @@ -819,9 +819,6 @@ def onConnected(interface): f"*** A newer version v{pypi_version} is available!" ' Consider running "pip install --upgrade meshtastic" ***\n' ) - if sys.version_info[0] == 3 and sys.version_info[1] < 9: - print(" *** this version of the CLI is the last that supports python 3.8 ***") - print(" *** please update your python installation ***") else: print("Showing info of remote node is not supported.") print( diff --git a/meshtastic/util.py b/meshtastic/util.py index 69a319d..8cb177c 100644 --- a/meshtastic/util.py +++ b/meshtastic/util.py @@ -322,9 +322,6 @@ def support_info(): ) else: print(f" meshtastic: v{the_version}") - if sys.version_info[0] == 3 and sys.version_info[1] < 9: - print(" *** this version of the CLI is the last that supports python 3.8 ***") - print(" *** please update your python installation ***") print(f" Executable: {sys.argv[0]}") print( f" Python: {platform.python_version()} {platform.python_implementation()} {platform.python_compiler()}"