From 831ecca3c9779d6887e1bb8b5f029d6d3b927a71 Mon Sep 17 00:00:00 2001 From: Ben Lye Date: Wed, 17 Mar 2021 16:38:07 +0000 Subject: [PATCH] pyserial>=3.4 will be OK --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 559a441..71e5369 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ plugin_name = "OctoPrint-FirmwareUpdater" # The plugin's version. Can be overwritten within OctoPrint's internal data via __plugin_version__ in the plugin module -plugin_version = "1.10.9" +plugin_version = "1.10.10b0" # The plugin's description. Can be overwritten within OctoPrint's internal data via __plugin_description__ in the plugin @@ -34,7 +34,7 @@ plugin_license = "AGPLv3" # Any additional requirements besides OctoPrint should be listed here -plugin_requires = ["pyserial>=3.5"] +plugin_requires = ["pyserial>=3.4"] ### -------------------------------------------------------------------------------------------------------------------- ### More advanced options that you usually shouldn't have to touch follow after this point