From d8a07a78a4f8953f6940c2c2f81de45808048d9d Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Mon, 16 May 2022 10:10:01 -0700 Subject: [PATCH] Docstring clarification --- buildtools/config.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/buildtools/config.py b/buildtools/config.py index 017c8c54..d421f5fa 100644 --- a/buildtools/config.py +++ b/buildtools/config.py @@ -965,13 +965,13 @@ def getExpectedVisCVersion(): """ Returns the Visual C version that Python is expecting, based on the usual version that stock Python was built with. + (Not currently used, we're just selecting the latest available compiler + >= 14.0 for now...) """ if MSVCinfo is None: raise RuntimeError('getMSVCInfo has not been called yet.') py_ver = MSVCinfo.py_ver - if py_ver in ((3, 4),): - min_ver = 10.0 - elif py_ver in ((3, 5), (3, 6), (3, 7), (3, 8)): + if py_ver in ((3, 5), (3, 6), (3, 7), (3, 8)): min_ver = 14.0 elif py_ver in ((3, 9), (3, 10)): min_ver = 14.2