From b28749568a20777e52f5219dc4652e7bf67fa5ce Mon Sep 17 00:00:00 2001 From: Kevin Hester Date: Wed, 23 Dec 2020 21:42:57 +0800 Subject: [PATCH] apparently 3.5 is too old for us, require python >=3.6 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index b2a1ea9..4521f8b 100644 --- a/setup.py +++ b/setup.py @@ -30,7 +30,7 @@ setup( install_requires=["pyserial>=3.4", "protobuf>=3.13.0", "pypubsub>=4.0.3", "dotmap>=1.3.14", "pexpect>=4.6.0", "pyqrcode>=1.2.1", "pygatt>=4.0.5"], - python_requires='>=3.4', + python_requires='>=3.6', entry_points={ "console_scripts": [ "meshtastic=meshtastic.__main__:main"