mirror of
https://github.com/actions/python-versions.git
synced 2025-04-06 15:29:39 +00:00
Check tcltk for any platform and version
This commit is contained in:
@ -4,8 +4,7 @@ import _tkinter
|
||||
header = _tkinter.TK_VERSION
|
||||
lib = tkinter.Tk().getvar('tk_version')
|
||||
|
||||
print('header version=' + header)
|
||||
print('lib version=' + lib)
|
||||
|
||||
if lib != '8.6' or header != '8.6':
|
||||
if lib != header:
|
||||
print('header version=' + header)
|
||||
print('lib version=' + lib)
|
||||
exit(1)
|
Reference in New Issue
Block a user