From f4865b7ed59031ba3ab1cef8a994cf4f364741bd Mon Sep 17 00:00:00 2001 From: Thomas Edward Kingstone Date: Thu, 15 Jan 2026 15:09:39 +0000 Subject: [PATCH] Added python version 3.12.3 to possible versions. --- Python_Engine/Query/EmbeddableURL.cs | 1 + Python_oM/Enums/PythonVersion.cs | 2 ++ 2 files changed, 3 insertions(+) diff --git a/Python_Engine/Query/EmbeddableURL.cs b/Python_Engine/Query/EmbeddableURL.cs index 556a904..20ebdd2 100644 --- a/Python_Engine/Query/EmbeddableURL.cs +++ b/Python_Engine/Query/EmbeddableURL.cs @@ -83,6 +83,7 @@ public static string EmbeddableURL(this PythonVersion version) { PythonVersion.v3_11_2, "https://www.python.org/ftp/python/3.11.2/python-3.11.2-amd64.exe" }, { PythonVersion.v3_11_3, "https://www.python.org/ftp/python/3.11.3/python-3.11.3-amd64.exe" },*/ { PythonVersion.v3_11, "https://www.python.org/ftp/python/3.11.4/python-3.11.4-amd64.exe" }, + { PythonVersion.v3_12, "https://www.python.org/ftp/python/3.12.3/python-3.12.3-amd64.exe" } }; return versions[version]; diff --git a/Python_oM/Enums/PythonVersion.cs b/Python_oM/Enums/PythonVersion.cs index 260097f..5648d98 100644 --- a/Python_oM/Enums/PythonVersion.cs +++ b/Python_oM/Enums/PythonVersion.cs @@ -127,6 +127,8 @@ public enum PythonVersion v3_11_3,*/ [Description("3.11")] //3.11.4 v3_11, + [Description("3.12")] + v3_12, } }