mirror of
https://github.com/actions/python-versions.git
synced 2025-04-05 06:49:39 +00:00
add possible fixes for python 3.11.0-alpha.1
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user