From 146f6d2a296ab0db63b21835377ef03a7e8618c6 Mon Sep 17 00:00:00 2001 From: ghidra1 Date: Wed, 1 May 2024 11:10:09 -0400 Subject: [PATCH] GP-4570 When searching version-specific python command consider newest one first --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index b2a6f3f9b2..75a2acf404 100644 --- a/build.gradle +++ b/build.gradle @@ -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() /*********************************************************************************