Skip to content

Commit e1a49c5

Browse files
committed
🔖 Bump version to 2023.5.24
1 parent 448d8e6 commit e1a49c5

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

setup.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
plugin_name = "OctoPrint-PiSupport"
1313

1414
# The plugin's version. Can be overwritten within OctoPrint's internal data via __plugin_version__ in the plugin module
15-
plugin_version = "2022.6.13"
15+
plugin_version = "2023.5.24"
1616

1717
# The plugin's description. Can be overwritten within OctoPrint's internal data via __plugin_description__ in the plugin
1818
# module
@@ -182,7 +182,8 @@ def delete_folder_if_empty(path, applied_handler):
182182
if not self.dry_run:
183183
shutil.rmtree(path)
184184
print(
185-
"removed %s since it was empty" % path[len(self.source_folder) :]
185+
"removed %s since it was empty"
186+
% path[len(self.source_folder) :]
186187
)
187188

188189
def delete_file(path):
@@ -758,7 +759,9 @@ def read_file_contents(path):
758759
},
759760
)
760761

761-
setup_parameters["long_description"] = read_file_contents(os.path.join(here, "README.md"))
762+
setup_parameters["long_description"] = read_file_contents(
763+
os.path.join(here, "README.md")
764+
)
762765
setup_parameters["long_description_content_type"] = "text/markdown"
763766

764767
setup(**setup_parameters)

0 commit comments

Comments
 (0)