File tree 1 file changed +2
-4
lines changed
1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ def _load_shared_library(lib_base_name: str):
19
19
if sys.platform.startswith("linux"):
20
20
lib_ext = ".so"
21
21
elif sys.platform == "darwin":
22
- lib_ext = ".so "
22
+ lib_ext = ".dylib "
23
23
elif sys.platform == "win32":
24
24
lib_ext = ".dll"
25
25
else:
@@ -219,7 +219,7 @@ def format_function(self, node):
219
219
description = "A Python wrapper for whisper.cpp" ,
220
220
long_description = long_description ,
221
221
long_description_content_type = "text/markdown" ,
222
- version = "0.2.0 " ,
222
+ version = "0.2.1 " ,
223
223
author = "Carlos Cardoso Dias" ,
224
224
author_email = "carlosdias.dev@gmail.com" ,
225
225
license = "MIT" ,
@@ -248,5 +248,3 @@ def format_function(self, node):
248
248
c_header_file = "vendor/whisper.cpp/whisper.h"
249
249
file_gen = WhisperCppFileGen (c_header_file )
250
250
file_gen .output (dest_dir / "whisper_cpp.py" )
251
-
252
-
You can’t perform that action at this time.
0 commit comments