summaryrefslogtreecommitdiff
path: root/numpy/random
diff options
context:
space:
mode:
authorDavid Cournapeau <cournape@gmail.com>2008-11-17 14:19:19 +0000
committerDavid Cournapeau <cournape@gmail.com>2008-11-17 14:19:19 +0000
commit2a569c4d98c9d1b34c7737edc4e040282d146589 (patch)
tree5455316e178d0e905e9dc74f2a12dbc88067319f /numpy/random
parent7b954c549ca49ef8ece88730cfca8bf7786a3851 (diff)
downloadnumpy-2a569c4d98c9d1b34c7737edc4e040282d146589.tar.gz
Do not use mingw workaround for msvc runtime 7.1.
Diffstat (limited to 'numpy/random')
-rw-r--r--numpy/random/setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/random/setup.py b/numpy/random/setup.py
index c8b0a5cf5..dde3119b7 100644
--- a/numpy/random/setup.py
+++ b/numpy/random/setup.py
@@ -10,7 +10,7 @@ def needs_mingw_ftime_workaround():
# ... but we can't easily detect compiler version outside distutils command
# context, so we will need to detect in randomkit whether we build with gcc
msver = get_msvc_build_version()
- if msver and msver > 7:
+ if msver and msver >= 8:
return True
return False