From fcdf95dbcc9089642aa84cdb12b758ee32c7ed13 Mon Sep 17 00:00:00 2001 From: Mark Walker Date: Wed, 29 Apr 2020 06:40:56 +0100 Subject: [PATCH] Indicate python 3 compatibilty --- octoprint_portlister/__init__.py | 1 + setup.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/octoprint_portlister/__init__.py b/octoprint_portlister/__init__.py index 9576acb..4eae028 100644 --- a/octoprint_portlister/__init__.py +++ b/octoprint_portlister/__init__.py @@ -100,6 +100,7 @@ def get_update_information(self, *args, **kwargs): ) __plugin_name__ = "PortLister" +__plugin_pythoncompat__ = ">=2.7,<4" def __plugin_load__(): global __plugin_implementation__ diff --git a/setup.py b/setup.py index eab3e08..c98e893 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ plugin_identifier = "portlister" plugin_package = "octoprint_portlister" plugin_name = "OctoPrint-PortLister" -plugin_version = "0.1.8" +plugin_version = "0.1.9" plugin_description = """PortLister notices when printers get turned on and tells the list of ports to refresh""" plugin_author = "Mark Walker" plugin_author_email = "markwal@hotmail.com"