Browse Source

Issue #27705: Update message in validate_ucrtbase.py

pull/9921/head
Steve Dower 10 years ago
parent
commit
2e82bf824e
  1. 2
      Misc/NEWS
  2. 5
      PC/validate_ucrtbase.py

2
Misc/NEWS

@ -328,6 +328,8 @@ Tests
Build
-----
- Issue #27705: Update message in validate_ucrtbase.py
- Issue #27976: Deprecate building _ctypes with the bundled copy of libffi on
non-OSX UNIX platforms.

5
PC/validate_ucrtbase.py

@ -82,7 +82,8 @@ print('{} is version {}.{}.{}.{}'.format(name.value, *ver))
if ver < (10, 0, 10586):
print('WARN: ucrtbased contains known issues. '
'Please update Visual Studio or the Windows SDK.')
'Please update the Windows 10 SDK.')
print('See:')
print(' http://bugs.python.org/issue26624')
print(' http://bugs.python.org/issue27705')
print(' https://developer.microsoft.com/en-US/windows/downloads/windows-10-sdk')
sys.exit(1)
Loading…
Cancel
Save