@@ -158,7 +158,8 @@ def test_build_with_override_launches(monkeypatch, tmp_path):
158
158
identifiers = {x .identifier for x in kwargs ["platform_configs" ]}
159
159
assert identifiers == {
160
160
f"{ x } -manylinux_x86_64"
161
- for x in ALL_IDS - {"cp36" , "cp310" , "cp311" , "cp312" , "pp37" , "pp38" , "pp39" , "pp310" , "gp240" }
161
+ for x in ALL_IDS
162
+ - {"cp36" , "cp310" , "cp311" , "cp312" , "pp37" , "pp38" , "pp39" , "pp310" , "gp240" }
162
163
}
163
164
assert kwargs ["options" ].build_options ("cp37-manylinux_x86_64" ).before_all == ""
164
165
@@ -187,7 +188,9 @@ def test_build_with_override_launches(monkeypatch, tmp_path):
187
188
188
189
identifiers = {x .identifier for x in kwargs ["platform_configs" ]}
189
190
assert identifiers == {
190
- f"{ x } -musllinux_x86_64" for x in ALL_IDS & {"cp36" , "cp37" , "cp38" , "cp39" } if "pp" not in x and "gp" not in x
191
+ f"{ x } -musllinux_x86_64"
192
+ for x in ALL_IDS & {"cp36" , "cp37" , "cp38" , "cp39" }
193
+ if "pp" not in x and "gp" not in x
191
194
}
192
195
193
196
kwargs = build_in_container .call_args_list [5 ][1 ]
@@ -196,7 +199,9 @@ def test_build_with_override_launches(monkeypatch, tmp_path):
196
199
assert not kwargs ["container" ]["enforce_32_bit" ]
197
200
identifiers = {x .identifier for x in kwargs ["platform_configs" ]}
198
201
assert identifiers == {
199
- f"{ x } -musllinux_x86_64" for x in ALL_IDS - {"cp36" , "cp37" , "cp38" , "cp39" } if "pp" not in x and "gp" not in x
202
+ f"{ x } -musllinux_x86_64"
203
+ for x in ALL_IDS - {"cp36" , "cp37" , "cp38" , "cp39" }
204
+ if "pp" not in x and "gp" not in x
200
205
}
201
206
202
207
kwargs = build_in_container .call_args_list [6 ][1 ]
0 commit comments