Skip to content

Commit

Permalink
Add RPi.GPIO as a requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
kontakt committed Jan 13, 2017
1 parent 3bb69d0 commit da7a913
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion octoprint_filamentreload/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def get_update_information(self):
)

__plugin_name__ = "Filament Sensor Reloaded"
__plugin_version__ = "1.0.0"
__plugin_version__ = "1.0.1"

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,7 +14,7 @@
plugin_name = "Octoprint-FilamentReload"

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

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

# Any additional requirements besides OctoPrint should be listed here
plugin_requires = []
plugin_requires = ['RPi.GPIO']

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

0 comments on commit da7a913

Please sign in to comment.