Remove python 3.8 warning. protobufs: v2.3.15 (brought in by merge)

This commit is contained in:
Ian McEwen
2024-07-07 21:00:26 -07:00
parent c04943308a
commit 865bb6a497
2 changed files with 0 additions and 6 deletions

View File

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

View File

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