Skip to content

Commit 2746e5a

Browse files
scripts/gh_release.py: fix incorrect specification of cp313.
1 parent 2ae420b commit 2746e5a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/gh_release.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -292,11 +292,11 @@ def make_string(*items):
292292
ret.append(item)
293293
return ' '.join(ret)
294294

295-
cps = inputs_wheels_cps if inputs_wheels_cps else 'cp39* cp310* cp311* cp312* cp313'
295+
cps = inputs_wheels_cps if inputs_wheels_cps else 'cp39* cp310* cp311* cp312* cp313*'
296296
set_if_unset( 'CIBW_BUILD', cps)
297297
for cp in cps.split():
298298
m = re.match('cp([0-9]+)[*]', cp)
299-
assert m
299+
assert m, f'{cps=} {cp=}'
300300
v = int(m.group(1))
301301
if v == 314:
302302
# Need to set CIBW_PRERELEASE_PYTHONS, otherwise cibuildwheel

0 commit comments

Comments
 (0)