From 0ac9ee6f54045a94142042a5071b676bc71f3a0f Mon Sep 17 00:00:00 2001 From: Chris Novakovic Date: Mon, 17 Nov 2025 11:32:59 +0000 Subject: [PATCH] Use correct SOABI for coverage wheels on macOS x86-64/Python 3.14 Looks like PyPI is now building x86-64 binary wheels for Python 3.14 against macOS 10.15+ instead of 10.13+ - fix the download URLs for the coverage module. --- third_party/python/BUILD | 2 ++ 1 file changed, 2 insertions(+) diff --git a/third_party/python/BUILD b/third_party/python/BUILD index 7033b8a..a4136c3 100644 --- a/third_party/python/BUILD +++ b/third_party/python/BUILD @@ -109,6 +109,8 @@ _coverage_tags = { ["cp312", "cp312"], ["cp313", "cp313"], ["cp313", "cp313t"], + ], + "macosx_10_15_x86_64": [ ["cp314", "cp314"], ["cp314", "cp314t"], ],