From 39aeab0095e16c6e61ab19975123efb3d34c1c63 Mon Sep 17 00:00:00 2001 From: Roy Shilkrot Date: Wed, 13 Nov 2024 11:38:28 -0500 Subject: [PATCH] Fix version format in setup.py to use hyphen instead of plus sign --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 3f1b01e..72abd1c 100644 --- a/setup.py +++ b/setup.py @@ -99,7 +99,7 @@ def build_extension(self, ext): setup( name="simpler-whisper", - version=f"0.2.4+{acceleration}", + version=f"0.2.4-{acceleration}", author="Roy Shilkrot", author_email="roy.shil@gmail.com", description="A simple Python wrapper for whisper.cpp",