We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ee3884 commit 13f6d6bCopy full SHA for 13f6d6b
.goreleaser.yaml
@@ -65,3 +65,5 @@ brews:
65
- name: go
66
type: optional
67
- name: git
68
+universal_binaries:
69
+ - replace: true
python/dist2wheel.py
@@ -89,18 +89,11 @@ def create_all(self):
89
def _matrix(self):
90
return {
91
"darwin": {
92
- "amd64": {
93
- "arch": "x86_64",
94
- "platform": "macosx_10_15_x86_64",
95
- "tags": [
96
- f"{self.py_tag}-{self.abi_tag}-macosx_10_15_x86_64",
97
- ],
98
- },
99
- "arm64": {
100
- "arch": "arm64",
101
- "platform": "macosx_11_0_arm64",
+ "all": {
+ "arch": "all",
+ "platform": "macosx_10_15_universal2",
102
"tags": [
103
- f"{self.py_tag}-{self.abi_tag}-macosx_11_arm64",
+ f"{self.py_tag}-{self.abi_tag}-macosx_10_15_universal2",
104
],
105
},
106
0 commit comments