Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
Erotemic committed Oct 7, 2024
1 parent 18ee123 commit 6c4d179
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion xcookie/builders/github_actions.py
Original file line number Diff line number Diff line change
Expand Up @@ -572,7 +572,10 @@ def build_binpy_wheels_job(self):
main_python_version = supported_platform_info['main_python_version']

pyproj_config = self.config._load_pyproject_config()
explicit_skips = ' ' + pyproj_config.get('tool', {}).get('cibuildwheel', {}).get('skip', '')
cibw_skip = pyproj_config.get('tool', {}).get('cibuildwheel', {}).get('skip', '')
if isinstance(cibw_skip, list):
cibw_skip = ' '.join(cibw_skip)
explicit_skips = ' ' + cibw_skip
print(f'explicit_skips={explicit_skips}')

# Fixme: how to get this working again?
Expand Down

0 comments on commit 6c4d179

Please sign in to comment.