Skip to content

Commit

Permalink
Merge pull request #1105 from OZI-Project/main
Browse files Browse the repository at this point in the history
🐛 fix CIBW build selector
  • Loading branch information
rjdbcm authored Sep 8, 2024
2 parents bff2064 + 88adb35 commit 5ccc3c6
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 5ccc3c6

Please sign in to comment.