Update ubuntu-python-builder.psm1

This commit is contained in:
Alice King Tai Poon 2022-06-05 16:08:44 +08:00 committed by GitHub
parent a60cb56ea5
commit 8f79ac8bd2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -58,8 +58,8 @@ class UbuntuPythonBuilder : NixPythonBuilder {
Prepare system environment by installing dependencies and required packages. Prepare system environment by installing dependencies and required packages.
#> #>
if (($this.Version -gt "3.0.0") -and ($this.Version -lt "3.5.3")) { if (($this.Version -gt "3.0.0") -and ($this.Version -lt "3.10.0")) {
Write-Host "Python3 versions lower than 3.5.3 are not supported" Write-Host "Python3 versions lower than 3.10.0 are not supported"
exit 1 exit 1
} }