(*items)
| 286 | set_if_unset( 'CIBW_SKIP', 'pp* *i686 cp36* cp37* *musllinux*aarch64*') |
| 287 | |
| 288 | def make_string(*items): |
| 289 | ret = list() |
| 290 | for item in items: |
| 291 | if item: |
| 292 | ret.append(item) |
| 293 | return ' '.join(ret) |
| 294 | |
| 295 | cps = inputs_wheels_cps if inputs_wheels_cps else 'cp39* cp310* cp311* cp312* cp313*' |
| 296 | set_if_unset( 'CIBW_BUILD', cps) |