diff options
author | David Cournapeau <cournape@gmail.com> | 2009-02-22 09:12:04 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2009-02-22 09:12:04 +0000 |
commit | 16f3279fa7aee9b4f3c8562e7f160f1259a50497 (patch) | |
tree | d28f54b84aee5a6772c5f92ff2ca67d385fe5c03 /numpy/distutils/mingw32ccompiler.py | |
parent | fa32caac1e165b8408885037ee68992e06eabcbe (diff) | |
download | numpy-16f3279fa7aee9b4f3c8562e7f160f1259a50497.tar.gz |
Fix typo in MSVC runtime info for mingw.
Diffstat (limited to 'numpy/distutils/mingw32ccompiler.py')
-rw-r--r-- | numpy/distutils/mingw32ccompiler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/distutils/mingw32ccompiler.py b/numpy/distutils/mingw32ccompiler.py index b3918fa55..8b0105833 100644 --- a/numpy/distutils/mingw32ccompiler.py +++ b/numpy/distutils/mingw32ccompiler.py @@ -365,7 +365,7 @@ if sys.platform == 'win32': _MSVCRVER_TO_FULLVER['90'] = "9.0.21022.8" # I took one version in my SxS directory: no idea if it is the good # one, and we can't retrieve it from python - _MSVCRVER_TO_FULLVER['90'] = "8.0.50727.42" + _MSVCRVER_TO_FULLVER['80'] = "8.0.50727.42" except ImportError: # If we are here, means python was not built with MSVC. Not sure what to do # in that case: manifest building will fail, but it should not be used in |