Skip to content

Commit

Permalink
scripts/gh_release.py: fix exclusion of musllinux*aarch64.
Browse files Browse the repository at this point in the history
We were previously setting CIBW_SKIP incorrectly.
  • Loading branch information
julian-smith-artifex-com committed Jun 25, 2024
1 parent ef99b8a commit 5ebf905
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/gh_release.py
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ def set_if_unset(name, value):
# external symbol PyUnicode_DecodeRawUnicodeEscape`.
# 2024-06-05: musllinux on aarch64 fails because libclang cannot find
# libclang.so.
set_if_unset( 'CIBW_SKIP', '"pp* *i686 cp36* cp37* *musllinux*aarch64*"')
set_if_unset( 'CIBW_SKIP', 'pp* *i686 cp36* cp37* *musllinux*aarch64*')

def make_string(*items):
ret = list()
Expand Down

0 comments on commit 5ebf905

Please sign in to comment.