Skip to content

Commit c6cdea5

Browse files
committed
setup.py: i guess windows can't have runtime_lib_dirs
1 parent 863d88a commit c6cdea5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ def build_extensions(self):
135135
include_dirs=include_dirs,
136136
library_dirs=library_dirs,
137137
libraries=[lib_talib_name],
138-
runtime_library_dirs=library_dirs)
138+
runtime_library_dirs=[] if sys.platform == 'win32' else library_dirs)
139139
]
140140

141141
from os import path

0 commit comments

Comments
 (0)