From bb067e0e1e8f29a3ea7282c02b665c4c2596688f Mon Sep 17 00:00:00 2001 From: Ben Meadors Date: Tue, 8 Aug 2023 12:48:03 -0500 Subject: [PATCH] Remove min app version check --- meshtastic/mesh_interface.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/meshtastic/mesh_interface.py b/meshtastic/mesh_interface.py index 0588db6..2019aaf 100644 --- a/meshtastic/mesh_interface.py +++ b/meshtastic/mesh_interface.py @@ -697,12 +697,6 @@ class MeshInterface: logging.debug(f"Received myinfo: {stripnl(fromRadio.my_info)}") failmsg = None - # Check for app too old - if self.myInfo.min_app_version > OUR_APP_VERSION: - failmsg = ( - "This device needs a newer python client, run 'pip install --upgrade meshtastic'." - "For more information see https://tinyurl.com/5bjsxu32" - ) if failmsg: self.failure = Exception(failmsg)