We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81e4d32 commit 0083868Copy full SHA for 0083868
setup.py
@@ -167,7 +167,9 @@ def get_extension_modules():
167
ext_options = {
168
"include_dirs": include_dirs,
169
"library_dirs": library_dirs,
170
- "runtime_library_dirs": library_dirs if os.name != "nt" and sys.platform != "cygwin" else None,
+ "runtime_library_dirs": (
171
+ library_dirs if os.name != "nt" and sys.platform != "cygwin" else None
172
+ ),
173
"libraries": get_libraries(library_dirs),
174
}
175
# setup cythonized modules
0 commit comments