Raise minimum Python version

This was accidentally lowered in 5d3240d492 and 3.8 has gone EOL since then.
This commit is contained in:
Margen67
2024-10-13 15:08:19 -07:00
parent 731c6057de
commit b39f1fbe60
3 changed files with 3 additions and 3 deletions

2
xb.ps1
View File

@@ -14,7 +14,7 @@ foreach ($pythonExecutable in $pythonExecutables) {
}
}
# Neither found, error and exit
$pythonMinimumVer = 3,7
$pythonMinimumVer = 3,9
if (!$pythonPath) {
Write-FatalError "ERROR: Python $($pythonMinimumVer[0]).$($pythonMinimumVer[1])+ must be installed and on PATH:`nhttps://www.python.org/"
}