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 4eb1751 commit 0601c2bCopy full SHA for 0601c2b
tests/python-tests.ps1
@@ -24,7 +24,7 @@ function Analyze-MissingModules([string] $buildOutputLocation) {
24
$module = $regexMatch.Groups[1].Value.Trim()
25
Write-Host "Failed missing modules:"
26
Write-Host $module
27
- if ( ($module -eq "_tkinter") -and ( $Version.StartsWith("3.10.0") -and ( ($Version -like "*beta*") -or ($Version -like "*alpha*") ) ) ) {
+ if ( ($module -eq "_tkinter") -and ( ($Version -like "3.10.0-beta*") -or ($Version -like "3.10.0-alpha*") ) ) {
28
Write-Host "$module $Version ignored"
29
} else {
30
return 1
0 commit comments