Merge pull request #88 from actions/v-mazhuk/skip-alpha-beta

Ignore tkinter module for alpha & beta versions of Pyrhon 3.10.0
This commit is contained in:
MaksimZhukov
2021-04-07 17:40:08 +03:00
committed by GitHub

View File

@@ -24,7 +24,7 @@ function Analyze-MissingModules([string] $buildOutputLocation) {
$module = $regexMatch.Groups[1].Value.Trim()
Write-Host "Failed missing modules:"
Write-Host $module
if ( ($module -eq "_tkinter") -and ($Version -eq "3.10.0-alpha.6") ) {
if ( ($module -eq "_tkinter") -and ( ($Version -like "3.10.0-beta*") -or ($Version -like "3.10.0-alpha*") ) ) {
Write-Host "$module $Version ignored"
} else {
return 1