diff options
| author | David Cournapeau <cournape@gmail.com> | 2008-11-17 14:19:19 +0000 |
|---|---|---|
| committer | David Cournapeau <cournape@gmail.com> | 2008-11-17 14:19:19 +0000 |
| commit | 2a569c4d98c9d1b34c7737edc4e040282d146589 (patch) | |
| tree | 5455316e178d0e905e9dc74f2a12dbc88067319f /numpy/random | |
| parent | 7b954c549ca49ef8ece88730cfca8bf7786a3851 (diff) | |
| download | numpy-2a569c4d98c9d1b34c7737edc4e040282d146589.tar.gz | |
Do not use mingw workaround for msvc runtime 7.1.
Diffstat (limited to 'numpy/random')
| -rw-r--r-- | numpy/random/setup.py | 2 |
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 |
