add possible fixes for python 3.11.0-alpha.1

This commit is contained in:
Dmitry Shibanov
2021-10-11 15:18:43 +03:00
parent 668a260bba
commit 816cfb12d1
2 changed files with 5 additions and 1 deletions

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 -like "3.10.0-beta*") -or ($Version -like "3.10.0-alpha*") ) ) {
if ( ($module -eq "_tkinter") -and ( [semver]"$($Version.Major).$($Version.Minor)" -ge [semver]"3.10" -and $Version.PreReleaseLabel ) ) {
Write-Host "$module $Version ignored"
} else {
return 1