Update build-all.py

This commit is contained in:
Thomas Krijnen
2022-11-09 10:58:38 +01:00
committed by GitHub
parent 4362163ea9
commit 1d6c3b3fc2
+1 -1
View File
@@ -268,7 +268,7 @@ if platform.system() == "Darwin":
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)]
PYTHON_VERSIONS = [pv for pv in PYTHON_VERSIONS if tuple(map(int, pv.split("."))) < (3, 11)]
BOOST_VERSION_UNDERSCORE = BOOST_VERSION.replace(".", "_")