Skip to content

Commit

Permalink
🐛 fix CIBW build selector
Browse files Browse the repository at this point in the history
Signed-off-by: rjdbcm <ozi.project@outlook.com>
  • Loading branch information
rjdbcm committed Sep 8, 2024
1 parent b10059a commit 88adb35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ozi/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def release(
ozi: bool = False,
) -> None:
"""Create releases for the current interpreter."""
os.environ['CIBW_BUILD'] = f'cp{sys.version_info.major}{sys.version_info.minor}'
os.environ['CIBW_BUILD'] = f'cp{sys.version_info.major}{sys.version_info.minor}*'
draft_ = setup(c, suite='dist', draft=draft, ozi=ozi)
if draft_ and draft_.exited != 0:
return print('No release drafted.', file=sys.stderr)
Expand Down

0 comments on commit 88adb35

Please sign in to comment.