From 570e62cfa37c914e793a565787771417942ef0ec Mon Sep 17 00:00:00 2001 From: "alexey.lysiuk" Date: Tue, 24 Oct 2023 09:48:58 +0300 Subject: [PATCH] aedi: bump oldest supported os version for x64 to 10.13 moltenvk 1.2.6 cannot be built for 10.12 --- aedi/utility.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aedi/utility.py b/aedi/utility.py index 92938706..7912f2a9 100644 --- a/aedi/utility.py +++ b/aedi/utility.py @@ -24,7 +24,7 @@ from distutils.version import StrictVersion from pathlib import Path # Minimum OS versions -OS_VERSION_X86_64 = StrictVersion('10.12') +OS_VERSION_X86_64 = StrictVersion('10.13') OS_VERSION_ARM64 = StrictVersion('11.0')