File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed
Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -22,12 +22,12 @@ jobs:
2222 platform : linux
2323 python-version : " 3.10"
2424 arch : x86_64
25- plat_name : linux_x86_64
25+ plat_name : manylinux2014_x86_64
2626 - os : ubuntu-latest
2727 platform : linux
2828 python-version : " 3.10"
2929 arch : arm64
30- plat_name : linux_aarch64
30+ plat_name : manylinux2014_aarch64
3131 - os : windows-latest
3232 platform : windows
3333 python-version : " 3.10"
Original file line number Diff line number Diff line change 1414
1515# Map Python plat_name to artifact names
1616ARTIFACTS = {
17- "linux_x86_64 " : ["ai-linux-cpu-x86_64" , "ai-linux-gpu-x86_64" ],
18- "linux_aarch64 " : [
17+ "manylinux2014_x86_64 " : ["ai-linux-cpu-x86_64" , "ai-linux-gpu-x86_64" ],
18+ "manylinux2014_aarch64 " : [
1919 "ai-linux-cpu-arm64" ,
2020 "ai-linux-gpu-arm64" ,
2121 ],
2525}
2626
2727BINARY_NAME = {
28- "linux_x86_64 " : "ai.so" ,
29- "linux_aarch64 " : "ai.so" ,
28+ "manylinux2014_x86_64 " : "ai.so" ,
29+ "manylinux2014_aarch64 " : "ai.so" ,
3030 "win_amd64" : "ai.dll" ,
3131 "macosx_10_9_x86_64" : "ai.dylib" ,
3232 "macosx_11_0_arm64" : "ai.dylib" ,
Original file line number Diff line number Diff line change 3737
3838# Map plat_name to classifier
3939classifier_map = {
40- "linux_x86_64 " : "Operating System :: POSIX :: Linux" ,
41- "linux_aarch64 " : "Operating System :: POSIX :: Linux" ,
40+ "manylinux2014_x86_64 " : "Operating System :: POSIX :: Linux" ,
41+ "manylinux2014_aarch64 " : "Operating System :: POSIX :: Linux" ,
4242 "win_amd64" : "Operating System :: Microsoft :: Windows" ,
4343 "macosx_10_9_x86_64" : "Operating System :: MacOS" ,
4444 "macosx_11_0_arm64" : "Operating System :: MacOS" ,
You can’t perform that action at this time.
0 commit comments