diff --git a/octoprint_stats/__init__.py b/octoprint_stats/__init__.py index 53009b9..ffb50c9 100644 --- a/octoprint_stats/__init__.py +++ b/octoprint_stats/__init__.py @@ -1019,6 +1019,7 @@ def get_update_information(self): # can be overwritten via __plugin_xyz__ control properties. See the documentation for that. __plugin_name__ = "Printer Stats" __plugin_version__ = "2.0.2" +__plugin_pythoncompat__ = ">=2.7,<4" __plugin_description__ = "Statistics of your 3D Printer" def __plugin_load__(): diff --git a/setup.py b/setup.py index 59944ff..2bf365d 100644 --- a/setup.py +++ b/setup.py @@ -33,7 +33,7 @@ plugin_license = "AGPLv3" # Any additional requirements besides OctoPrint should be listed here -plugin_requires = ["tinydb", "pandas"] +plugin_requires = ["tinydb", "pandas", "numpy"] ### -------------------------------------------------------------------------------------------------------------------- ### More advanced options that you usually shouldn't have to touch follow after this point