Skip to content

Commit

Permalink
Change where quotes are
Browse files Browse the repository at this point in the history
  • Loading branch information
rmjarvis committed Mar 11, 2024
1 parent ae98df7 commit d087767
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
uses: pypa/[email protected]
env:
CIBW_BUILD: "*manylinux*"
CIBW_SKIP: cp36* cp37* pp* "*i686"
CIBW_SKIP: "cp36* cp37* pp* *i686"
CIBW_BEFORE_ALL_LINUX: yum install -y libffi-devel || true

- name: Upload manylinux wheels
Expand All @@ -37,7 +37,7 @@ jobs:
uses: pypa/[email protected]
env:
CIBW_BUILD: "*musllinux*"
CIBW_SKIP: cp36* cp37* pp* "*i686"
CIBW_SKIP: "cp36* cp37* pp* *i686"
# I think musl always uses apk, but it doesn't seem to need ffi installed, so this works.
CIBW_BEFORE_ALL_LINUX: yum install -y libffi-devel || true

Expand All @@ -57,7 +57,7 @@ jobs:
uses: pypa/[email protected]
env:
CIBW_BUILD: "*macosx*"
CIBW_SKIP: cp36* cp37* pp* "*i686"
CIBW_SKIP: "cp36* cp37* pp* *i686"
CIBW_BEFORE_ALL_MACOS: brew install libffi || true

- name: Upload macosx wheels
Expand Down

0 comments on commit d087767

Please sign in to comment.