MCPcopy Index your code
hub / github.com/pymupdf/PyMuPDF / cibw_cp

Function cibw_cp

scripts/test.py:403–410  ·  view source on GitHub ↗

Returns in 'cp39*' format, e.g. suitable for CIBW_BUILD.

(*version_minors)

Source from the content-addressed store, hash-verified

401python_versions_minor = range(9, 14+1)
402
403def cibw_cp(*version_minors):
404 '''
405 Returns <version_tuples> in 'cp39*' format, e.g. suitable for CIBW_BUILD.
406 ''&#x27;
407 ret = list()
408 for version_minor in version_minors:
409 ret.append(f'cp3{version_minor}*')
410 return ' '.join(ret)
411
412
413def main(argv):

Callers 2

mainFunction · 0.85
cibuildwheelFunction · 0.85

Calls 1

appendMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…