diff options
| author | Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> | 2022-10-13 10:59:48 +0200 |
|---|---|---|
| committer | Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> | 2022-10-18 10:03:00 +0200 |
| commit | 7da70ce023d9e5b1dcd3f71a782f12c080b1c590 (patch) | |
| tree | a6bb9c03c27a423e37e69b765c7305c065b6eba0 /numpy/distutils | |
| parent | ac39f38987387307ca099ee69fabf33050e10b33 (diff) | |
| download | numpy-7da70ce023d9e5b1dcd3f71a782f12c080b1c590.tar.gz | |
DOC: remove reference to Python 2
Remove reference to Visual Studio version required by old versions
of Python. Python >= 3.5 is built with Microsoft Visual C++ 14.0 /
Visual Studio 2015:
https://wiki.python.org/moin/WindowsCompilers
Diffstat (limited to 'numpy/distutils')
| -rw-r--r-- | numpy/distutils/command/config.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/numpy/distutils/command/config.py b/numpy/distutils/command/config.py index 1f4037bb5..fdb650d36 100644 --- a/numpy/distutils/command/config.py +++ b/numpy/distutils/command/config.py @@ -46,7 +46,7 @@ class config(old_config): # XXX: hack to circumvent a python 2.6 bug with msvc9compiler: # initialize call query_vcvarsall, which throws an IOError, and # causes an error along the way without much information. We try to - # catch it here, hoping it is early enough, and print an helpful + # catch it here, hoping it is early enough, and print a helpful # message instead of Error: None. if not self.compiler.initialized: try: @@ -56,8 +56,7 @@ class config(old_config): Could not initialize compiler instance: do you have Visual Studio installed? If you are trying to build with MinGW, please use "python setup.py build -c mingw32" instead. If you have Visual Studio installed, check it is - correctly installed, and the right version (VS 2008 for python 2.6, 2.7 and 3.2, - VS 2010 for >= 3.3). + correctly installed, and the right version (VS 2015 as of this writing). Original exception was: %s, and the Compiler class was %s ============================================================================""") \ |
