build.py: Add early MacPro6,1 support

This commit is contained in:
Mykola Grymalyuk
2022-10-26 21:17:51 -06:00
parent 406072cbe1
commit 72464f3d54
3 changed files with 15 additions and 1 deletions
+1 -1
View File
@@ -1588,7 +1588,7 @@ class wx_python_gui:
# - VBIOS Boot Issue (MacPro6,1)
# - Non-Metal GPUs
model = self.constants.custom_model or self.constants.computer.real_model
if model in model_array.LegacyGPU or model in ["MacPro3,1", "MacPro4,1", "MacPro5,1", "MacPro6,1"]:
if model in model_array.LegacyGPU or model in ["MacPro3,1", "MacPro4,1", "MacPro5,1"]:
try:
app_major = app_dict['Version'].split(".")[0]
if float(app_major) > self.constants.os_support: