Update shared library extension for macos

This commit is contained in:
Andrei Betlen 2023-04-08 02:45:21 -04:00
parent 6a143ac0db
commit ae3e9c3d6f

View file

@ -10,7 +10,7 @@ def _load_shared_library(lib_base_name):
if sys.platform.startswith("linux"):
lib_ext = ".so"
elif sys.platform == "darwin":
lib_ext = ".dylib"
lib_ext = ".so"
elif sys.platform == "win32":
lib_ext = ".dll"
else: