From add0956ee6be58fe30271fc41f3a8bd1610cff9a Mon Sep 17 00:00:00 2001 From: Daniel Wagner-Hall Date: Mon, 8 Aug 2022 18:26:42 +0100 Subject: [PATCH] Bump release requirements to macos 11.0 (#16436) https://github.com/pantsbuild/pants/pull/16317 updated what we're generating wheels for, so we need to bump the wheels we look for accordingly. --- build-support/bin/_release_helper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-support/bin/_release_helper.py b/build-support/bin/_release_helper.py index 6c1b1050ce8..447a2c27bcd 100644 --- a/build-support/bin/_release_helper.py +++ b/build-support/bin/_release_helper.py @@ -794,7 +794,7 @@ def build_pex(fetch: bool) -> None: "CPython>=3.7,<3.10", *( f"--platform={plat}-{abi}" - for plat in ("linux_x86_64", "macosx_10.15_x86_64") + for plat in ("linux_x86_64", "macosx_11.0_x86_64") for abi in ("cp-37-m", "cp-38-cp38", "cp-39-cp39") ), ]