From f5177a3ca78a1ef150f0fcb083d3651a9da54e24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D7=A0=CF=85=CE=B1=CE=B7=20=D7=A0=CF=85=CE=B1=CE=B7=D1=95?= =?UTF-8?q?=CF=83=CE=B7?= Date: Mon, 29 Jan 2024 18:43:05 -0800 Subject: [PATCH] ci: made a few changes from PR review --- python/dist2wheel.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/python/dist2wheel.py b/python/dist2wheel.py index 2409497..7a2c928 100755 --- a/python/dist2wheel.py +++ b/python/dist2wheel.py @@ -91,9 +91,9 @@ def _matrix(self): "darwin": { "amd64": { "arch": "x86_64", - "platform": "macosx_10_7_x86_64", + "platform": "macosx_10_15_x86_64", "tags": [ - f"{self.py_tag}-{self.abi_tag}-macosx_10_7_x86_64", + f"{self.py_tag}-{self.abi_tag}-macosx_10_15_x86_64", ], }, }, @@ -119,7 +119,7 @@ def _set_platform_props(self, artifact): platform = _map[_platform][_goarch]["platform"] self.platform = f"{platform}" - self.platform_tag = "\n".join(_map[_platform][_goarch]["tags"]) + self.platform_tag = "\nTag: ".join(_map[_platform][_goarch]["tags"]) @staticmethod def _fix_checksum(checksum):