Skip to content

Commit

Permalink
Merge pull request #122 from OctoPrint/bugfix/missing_six
Browse files Browse the repository at this point in the history
add six to requirements to resolve issue with OctoPrint 1.8.0+
  • Loading branch information
jneilliii authored May 31, 2022
2 parents 17d4924 + 0e3bcfe commit c66623c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
plugin_name = "OctoPrint-MQTT"

# The plugin's version. Can be overwritten within OctoPrint's internal data via __plugin_version__ in the plugin module
plugin_version = "0.8.12"
plugin_version = "0.8.13"

# The plugin's description. Can be overwritten within OctoPrint's internal data via __plugin_description__ in the plugin
# module
Expand All @@ -30,7 +30,7 @@
plugin_license = "AGPLv3"

# Any additional requirements besides OctoPrint should be listed here
plugin_requires = ["OctoPrint>=1.3.5", "paho-mqtt"]
plugin_requires = ["OctoPrint>=1.3.5", "six", "paho-mqtt"]

### --------------------------------------------------------------------------------------------------------------------
### More advanced options that you usually shouldn't have to touch follow after this point
Expand Down

0 comments on commit c66623c

Please sign in to comment.