Skip to content

Commit da7a913

Browse files
committed
Add RPi.GPIO as a requirement
1 parent 3bb69d0 commit da7a913

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

octoprint_filamentreload/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def get_update_information(self):
7676
)
7777

7878
__plugin_name__ = "Filament Sensor Reloaded"
79-
__plugin_version__ = "1.0.0"
79+
__plugin_version__ = "1.0.1"
8080

8181
def __plugin_load__():
8282
global __plugin_implementation__

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
plugin_name = "Octoprint-FilamentReload"
1515

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

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

3535
# Any additional requirements besides OctoPrint should be listed here
36-
plugin_requires = []
36+
plugin_requires = ['RPi.GPIO']
3737

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

0 commit comments

Comments
 (0)