From 41dad23c49ac044f4e1b7f2889c97b55400c075f Mon Sep 17 00:00:00 2001 From: jneilliii Date: Sat, 10 Feb 2024 13:33:09 -0500 Subject: [PATCH] pin paho-mqtt to versions less than 2 --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 00faa1c..51a8789 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ plugin_package = "octoprint_bambu_printer" plugin_name = "OctoPrint-BambuPrinter" # The plugin's version. Can be overwritten within OctoPrint's internal data via __plugin_version__ in the plugin module -plugin_version = "0.0.6" +plugin_version = "0.0.7" # The plugin's description. Can be overwritten within OctoPrint's internal data via __plugin_description__ in the plugin # module @@ -33,7 +33,7 @@ plugin_url = "https://github.com/jneilliii/OctoPrint-BambuPrinter" plugin_license = "AGPLv3" # Any additional requirements besides OctoPrint should be listed here -plugin_requires = ["paho-mqtt", "python-dateutil", "pybambu>=1.0.1"] +plugin_requires = ["paho-mqtt<2", "python-dateutil", "pybambu>=1.0.1"] ### -------------------------------------------------------------------------------------------------------------------- ### More advanced options that you usually shouldn't have to touch follow after this point