This commit is contained in:
Sergey Dolin
2022-06-17 11:50:52 +02:00
parent 0f97bcdc23
commit 6524532238
2 changed files with 16 additions and 0 deletions

View File

@ -89,4 +89,12 @@ Describe "Tests" {
"./dist/simple-test" | Should -ReturnZeroExitCode
}
}
if (($Platform -match "macos") -or ($Platform -match "darwin")) {
if ($Version -gt "3.7.12" ) {
It "Check if python above 3.7.12 use tcl/tk v8.6" {
"python ./sources/tcltk-86.py" | Should -ReturnZeroExitCode
}
}
}
}

View File

@ -0,0 +1,8 @@
import tkinter
import _tkinter
lib = tkinter.Tk().getvar('tk_version')
header = _tkinter.TK_VERSION
if lib != '8.6' or header != '8.6':
exit(1)