We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a957fc commit a56a786Copy full SHA for a56a786
suite/check_wheel_bin_arch.py
@@ -33,6 +33,7 @@
33
filename = {
34
"macosx": "libcapstone.dylib",
35
"manylinux": "libcapstone.so",
36
+ "musllinux": "libcapstone.so",
37
"win": "capstone.dll",
38
}
39
@@ -45,7 +46,7 @@
45
46
continue
47
wheel_seen = True
48
target = re.search(r"py3-none-(.+).whl", f"{f}").group(1)
- platform = re.search("^(win|manylinux|macosx)", target).group(1)
49
+ platform = re.search("^(win|manylinux|musllinux|macosx)", target).group(1)
50
51
arch = re.search(
52
"(universal2|x86_64|arm64|aarch64|i686|win32|amd64)$", target
0 commit comments