Skip to content

Commit f6a674c

Browse files
committed
FIX: update lib path
1 parent 7e417bb commit f6a674c

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

eyelinkio/edf/_edf2py.py

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,7 @@ def get_lib_path():
4343
else: # 32 bit
4444
lib_path = lib_path / "win32" / "edfapi.dll"
4545
elif sys.platform.startswith('darwin'):
46-
lib_path = (lib_path /
47-
"macos" /
48-
"edfapi.framework" /
49-
"Versions" /
50-
"Current" /
51-
"edfapi"
52-
)
46+
lib_path = (lib_path / "macos" / "edfapi.framework" / "edfapi")
5347
elif sys.platform.startswith('linux'):
5448
lib_path = lib_path / "linux" / "libedfapi.so"
5549
else:

0 commit comments

Comments
 (0)