aboutsummaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
Diffstat (limited to 'python')
-rwxr-xr-xpython/setup.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/python/setup.py b/python/setup.py
index afe021fe..8f1caec2 100755
--- a/python/setup.py
+++ b/python/setup.py
@@ -203,9 +203,7 @@ if __name__ == '__main__':
extra_compile_args.append('-DMS_WIN64')
# MSVS default is dymanic
- if (sys.platform == 'win32' and
- ((sys.version_info[0] == 3 and sys.version_info[1] == 5) or
- (sys.version_info[0] == 3 and sys.version_info[1] == 6))):
+ if (sys.platform == 'win32'):
extra_compile_args.append('/MT')
if "clang" in os.popen('$CC --version 2> /dev/null').read():