Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Python_Engine/Query/EmbeddableURL.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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];
Expand Down
2 changes: 2 additions & 0 deletions Python_oM/Enums/PythonVersion.cs
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,8 @@ public enum PythonVersion
v3_11_3,*/
[Description("3.11")] //3.11.4
v3_11,
[Description("3.12")]
v3_12,
}
}

Expand Down