Skip to content

Commit

Permalink
Updated Python Compat to include Python3
Browse files Browse the repository at this point in the history
  • Loading branch information
jubaleth committed May 2, 2020
1 parent 7a52442 commit 08edbbd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions octoprint_autoselect/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ def get_update_information(self):
)

__plugin_name__ = "Autoselect Plugin"
__plugin_pythoncompat__ = ">=2.7,<4"

def __plugin_load__():
global __plugin_implementation__
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@
plugin_name = "OctoPrint-Autoselect"

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

# The plugin's description. Can be overwritten within OctoPrint's internal data via __plugin_description__ in the plugin
# module
plugin_description = """Automatically selects freshly added files for printing if no print job is currently active."""

# The plugin's author. Can be overwritten within OctoPrint's internal data via __plugin_author__ in the plugin module
plugin_author = "Gina Häußge"
plugin_author = "Gina Häußge / Jubaleth"

# The plugin's author's mail address.
plugin_author_email = "[email protected]"
Expand Down

0 comments on commit 08edbbd

Please sign in to comment.