Fix macos shared library name in conflict_set.py
Some checks failed
weaselab/conflict-set/pipeline/head There was a failure building this commit

This commit is contained in:
2024-04-04 16:17:06 -07:00
parent 3c100ccee8
commit 1534e10b75

View File

@@ -5,7 +5,7 @@ import os
_lib = None _lib = None
for f in ( for f in (
os.path.dirname(__file__) + "/build/radix_tree/libconflict-set.so.0", os.path.dirname(__file__) + "/build/radix_tree/libconflict-set.so.0",
os.path.dirname(__file__) + "/build/radix_tree/libconflict-set.dylib.0", os.path.dirname(__file__) + "/build/radix_tree/libconflict-set.0.dylib",
): ):
try: try:
_lib = ctypes.cdll.LoadLibrary(f) _lib = ctypes.cdll.LoadLibrary(f)