From 513b0d99c1ba40887b8cf453b990b7141b85ab2d Mon Sep 17 00:00:00 2001 From: "Mathieu \"ralmn\" HIREL" Date: Tue, 12 Jan 2021 20:03:48 +0100 Subject: [PATCH] v1.5.1 Disable python2.7 --- octoprint_ikea_tradfri/__init__.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/octoprint_ikea_tradfri/__init__.py b/octoprint_ikea_tradfri/__init__.py index fdc4836..643e301 100644 --- a/octoprint_ikea_tradfri/__init__.py +++ b/octoprint_ikea_tradfri/__init__.py @@ -753,7 +753,7 @@ def on_event(self, event, payload): # ("OctoPrint-PluginSkeleton"), you may define that here. Same goes for the other metadata derived from setup.py that # can be overwritten via __plugin_xyz__ control properties. See the documentation for that. __plugin_name__ = "OctoPrint Ikea Tradfri" -__plugin_pythoncompat__ = ">=2.7,<4" +__plugin_pythoncompat__ = ">=3,<4" def __plugin_load__(): diff --git a/setup.py b/setup.py index f183298..02b3d66 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ plugin_name = "OctoPrint Ikea Tradfri" # The plugin's version. Can be overwritten within OctoPrint's internal data via __plugin_version__ in the plugin module -plugin_version = "1.5.0" +plugin_version = "1.5.1" # The plugin's description. Can be overwritten within OctoPrint's internal data via __plugin_description__ in the plugin