diff --git a/setup.py b/setup.py index 236b337b..93c9e00a 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ # The plugin's version. Can be overwritten within OctoPrint's internal data via __plugin_version__ in the plugin module # -plugin_version = "1.3.0" +plugin_version = "1.3.1" # The plugin's description. Can be overwritten within OctoPrint's internal data via __plugin_description__ in the plugin # module @@ -36,10 +36,10 @@ # Any additional requirements besides OctoPrint should be listed here plugin_requires = [ "pillow >=6.2.0<7.0.0", # since 7.0.0 no Python 2.7 Support, see https://github.com/python-pillow/Pillow/blob/master/CHANGES.rst - "peewee", - "psycopg2-binary", # postgres - driver - "pymysql", #mysql - driver - "qrcode" + "qrcode", + "peewee" + # "psycopg2-binary", # postgres - driver + # "pymysql", #mysql - driver ] ### --------------------------------------------------------------------------------------------------------------------