Skip to content

Commit

Permalink
ci: made a few changes from PR review
Browse files Browse the repository at this point in the history
  • Loading branch information
retr0h committed Jan 30, 2024
1 parent 09a4b3a commit f5177a3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions python/dist2wheel.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
],
},
},
Expand All @@ -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):
Expand Down

0 comments on commit f5177a3

Please sign in to comment.