GP-4570 When searching version-specific python command consider newest

one first
pull/5012/head^2
ghidra1 2024-05-01 11:10:09 -04:00
parent 26fe4d63a7
commit 146f6d2a29
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ if ("32".equals(System.getProperty("sun.arch.data.model"))) {
/***************************************************************************************
* Identify supported Python command
***************************************************************************************/
project.ext.SUPPORTED_PY_VERSIONS = ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
project.ext.SUPPORTED_PY_VERSIONS = ['3.12', '3.11', '3.10', '3.9', '3.8', '3.7']
project.ext.PYTHON3 = findPython3()
/*********************************************************************************