Skip to content

Commit b39f1fb

Browse files
committed
Raise minimum Python version
This was accidentally lowered in xenia-canary@5d3240d and 3.8 has gone EOL since then.
1 parent 731c605 commit b39f1fb

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Diff for: xb.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ REM Environment Validation
88
REM ============================================================================
99

1010
SET "PYTHON_MINIMUM_VERSION[0]=3"
11-
SET "PYTHON_MINIMUM_VERSION[1]=7"
11+
SET "PYTHON_MINIMUM_VERSION[1]=9"
1212
CALL :check_python
1313
IF %_RESULT% NEQ 0 (
1414
ECHO.

Diff for: xb.ps1

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

Diff for: xenia-build

+1-1
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ def main():
137137
print('')
138138

139139
# Check python version.
140-
python_minimum_ver=3,7
140+
python_minimum_ver=3,9
141141
if not sys.version_info[:2] >= (python_minimum_ver[0], python_minimum_ver[1]):
142142
print('ERROR: Python ', python_minimum_ver[0], '.', python_minimum_ver[1], '+ must be installed and on PATH', sep='')
143143
sys.exit(1)

0 commit comments

Comments
 (0)