Update build-all.py

This commit is contained in:
Thomas Krijnen
2022-11-09 10:57:42 +01:00
committed by GitHub
parent 67808b8384
commit 4362163ea9
+3
View File
@@ -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(".", "_")