@@ -34,6 +34,9 @@ def _test_simple(env):
3434 "musllinux_1_1_ppc64le" : [
3535 struct (os = "linux" , cpu = "ppc64le" , abi = None , target_platform = "linux_ppc64le" , version = (1 , 1 )),
3636 ],
37+ "musllinux_1_2_riscv64" : [
38+ struct (os = "linux" , cpu = "riscv64" , abi = None , target_platform = "linux_riscv64" , version = (1 , 2 )),
39+ ],
3740 "win_amd64" : [
3841 struct (os = "windows" , cpu = "x86_64" , abi = None , target_platform = "windows_x86_64" , version = (0 , 0 )),
3942 ],
@@ -66,6 +69,9 @@ def _test_with_abi(env):
6669 "musllinux_1_1_ppc64le" : [
6770 struct (os = "linux" , cpu = "ppc64le" , abi = "cp311" , target_platform = "cp311_linux_ppc64le" , version = (1 , 1 )),
6871 ],
72+ "musllinux_1_2_riscv64" : [
73+ struct (os = "linux" , cpu = "riscv64" , abi = "cp311" , target_platform = "cp311_linux_riscv64" , version = (1 , 2 )),
74+ ],
6975 "win_amd64" : [
7076 struct (os = "windows" , cpu = "x86_64" , abi = "cp311" , target_platform = "cp311_windows_x86_64" , version = (0 , 0 )),
7177 ],
@@ -96,13 +102,15 @@ def _can_parse_existing_tags(env):
96102 "manylinux2014_i686" : 1 ,
97103 "manylinux2014_ppc64" : 1 ,
98104 "manylinux2014_ppc64le" : 1 ,
105+ "manylinux2014_riscv64" : 1 ,
99106 "manylinux2014_s390x" : 1 ,
100107 "manylinux2014_x86_64" : 1 ,
101108 "manylinux_11_12_aarch64" : 1 ,
102109 "manylinux_11_12_armv7l" : 1 ,
103110 "manylinux_11_12_i686" : 1 ,
104111 "manylinux_11_12_ppc64" : 1 ,
105112 "manylinux_11_12_ppc64le" : 1 ,
113+ "manylinux_11_12_riscv64" : 1 ,
106114 "manylinux_11_12_s390x" : 1 ,
107115 "manylinux_11_12_x86_64" : 1 ,
108116 "manylinux_1_2_aarch64" : 1 ,
@@ -111,6 +119,7 @@ def _can_parse_existing_tags(env):
111119 "musllinux_11_12_armv7l" : 1 ,
112120 "musllinux_11_12_i686" : 1 ,
113121 "musllinux_11_12_ppc64le" : 1 ,
122+ "musllinux_11_12_riscv64" : 1 ,
114123 "musllinux_11_12_s390x" : 1 ,
115124 "musllinux_11_12_x86_64" : 1 ,
116125 "win32" : 1 ,
0 commit comments