From 4362163ea9cd19c06fc2f153bc937a990decf4e5 Mon Sep 17 00:00:00 2001 From: Thomas Krijnen Date: Wed, 9 Nov 2022 10:57:42 +0100 Subject: [PATCH] Update build-all.py --- nix/build-all.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nix/build-all.py b/nix/build-all.py index facd871639..acd3226b16 100644 --- a/nix/build-all.py +++ b/nix/build-all.py @@ -266,6 +266,9 @@ if platform.system() == "Darwin": if run(["sw_vers", "-productVersion"]) >= "11.": # Apparently not supported PYTHON_VERSIONS = [pv for pv in PYTHON_VERSIONS if tuple(map(int, pv.split("."))) >= (3, 7)] + if run(["sw_vers", "-productVersion"]) < "10.16": + # Apparently not supported + PYTHON_VERSIONS = [pv for pv in PYTHON_VERSIONS if tuple(map(int, pv.split("."))) <= (3, 10)] BOOST_VERSION_UNDERSCORE = BOOST_VERSION.replace(".", "_")