We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f97bcd commit 6524532Copy full SHA for 6524532
tests/python-tests.ps1
@@ -89,4 +89,12 @@ Describe "Tests" {
89
"./dist/simple-test" | Should -ReturnZeroExitCode
90
}
91
92
+
93
+ if (($Platform -match "macos") -or ($Platform -match "darwin")) {
94
+ if ($Version -gt "3.7.12" ) {
95
+ It "Check if python above 3.7.12 use tcl/tk v8.6" {
96
+ "python ./sources/tcltk-86.py" | Should -ReturnZeroExitCode
97
+ }
98
99
100
tests/sources/tcltk-86.py
@@ -0,0 +1,8 @@
1
+import tkinter
2
+import _tkinter
3
4
+lib = tkinter.Tk().getvar('tk_version')
5
+header = _tkinter.TK_VERSION
6
7
+if lib != '8.6' or header != '8.6':
8
+ exit(1)
0 commit comments