File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -811,6 +811,9 @@ def setSimpleConfig(modem_preset):
811811 f"*** A newer version v{ pypi_version } is available!"
812812 ' Consider running "pip install --upgrade meshtastic" ***\n '
813813 )
814+ if sys .version_info [0 ] == 3 and sys .version_info [1 ] < 9 :
815+ print (" *** this version of the CLI is the last that supports python 3.8 ***" )
816+ print (" *** please update your python installation ***" )
814817 else :
815818 print ("Showing info of remote node is not supported." )
816819 print (
Original file line number Diff line number Diff line change @@ -317,6 +317,9 @@ def support_info():
317317 )
318318 else :
319319 print (f" meshtastic: v{ the_version } " )
320+ if sys .version_info [0 ] == 3 and sys .version_info [1 ] < 9 :
321+ print (" *** this version of the CLI is the last that supports python 3.8 ***" )
322+ print (" *** please update your python installation ***" )
320323 print (f" Executable: { sys .argv [0 ]} " )
321324 print (
322325 f" Python: { platform .python_version ()} { platform .python_implementation ()} { platform .python_compiler ()} "
You can’t perform that action at this time.
0 commit comments