From 0e56e2802e01ea2471254259035a3e72ff282196 Mon Sep 17 00:00:00 2001 From: Philip Edwards <2999162+boristsr@users.noreply.github.com> Date: Thu, 5 Mar 2020 13:53:07 +1100 Subject: [PATCH 1/3] Uncommented support for python 3.7 on windows --- Source/UnrealEnginePython/UnrealEnginePython.Build.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/UnrealEnginePython/UnrealEnginePython.Build.cs b/Source/UnrealEnginePython/UnrealEnginePython.Build.cs index a6fe71946..609b9b817 100644 --- a/Source/UnrealEnginePython/UnrealEnginePython.Build.cs +++ b/Source/UnrealEnginePython/UnrealEnginePython.Build.cs @@ -18,7 +18,7 @@ public class UnrealEnginePython : ModuleRules private string[] windowsKnownPaths = { - // "C:/Program Files/Python37", + "C:/Program Files/Python37", "C:/Program Files/Python36", "C:/Program Files/Python35", "C:/Python27", From 41900ab2f1f17d6597b2448506eb2037eca105ee Mon Sep 17 00:00:00 2001 From: Philip Edwards <2999162+boristsr@users.noreply.github.com> Date: Thu, 5 Mar 2020 18:46:02 +1100 Subject: [PATCH 2/3] Removed search paths for other python versions --- Source/UnrealEnginePython/UnrealEnginePython.Build.cs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Source/UnrealEnginePython/UnrealEnginePython.Build.cs b/Source/UnrealEnginePython/UnrealEnginePython.Build.cs index 609b9b817..09de9596e 100644 --- a/Source/UnrealEnginePython/UnrealEnginePython.Build.cs +++ b/Source/UnrealEnginePython/UnrealEnginePython.Build.cs @@ -18,11 +18,7 @@ public class UnrealEnginePython : ModuleRules private string[] windowsKnownPaths = { - "C:/Program Files/Python37", - "C:/Program Files/Python36", - "C:/Program Files/Python35", - "C:/Python27", - "C:/IntelPython35" + "C:/Program Files/Python37" }; private string[] macKnownPaths = From a8746b5df5e4d453eb1a9424b6e1ee526b598b8a Mon Sep 17 00:00:00 2001 From: Philip Edwards <2999162+boristsr@users.noreply.github.com> Date: Fri, 22 May 2020 22:28:15 +1000 Subject: [PATCH 3/3] Update UnrealEnginePython.Build.cs --- Source/UnrealEnginePython/UnrealEnginePython.Build.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Source/UnrealEnginePython/UnrealEnginePython.Build.cs b/Source/UnrealEnginePython/UnrealEnginePython.Build.cs index 09de9596e..eb906428a 100644 --- a/Source/UnrealEnginePython/UnrealEnginePython.Build.cs +++ b/Source/UnrealEnginePython/UnrealEnginePython.Build.cs @@ -18,7 +18,8 @@ public class UnrealEnginePython : ModuleRules private string[] windowsKnownPaths = { - "C:/Program Files/Python37" + "C:/Program Files/Python37", + "C:/Python37" }; private string[] macKnownPaths =