Skip to content

Commit 0083868

Browse files
authored
STY: Wrip line setting runtime_library_dirs
1 parent 81e4d32 commit 0083868

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

setup.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,9 @@ def get_extension_modules():
167167
ext_options = {
168168
"include_dirs": include_dirs,
169169
"library_dirs": library_dirs,
170-
"runtime_library_dirs": library_dirs if os.name != "nt" and sys.platform != "cygwin" else None,
170+
"runtime_library_dirs": (
171+
library_dirs if os.name != "nt" and sys.platform != "cygwin" else None
172+
),
171173
"libraries": get_libraries(library_dirs),
172174
}
173175
# setup cythonized modules

0 commit comments

Comments
 (0)