We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a80512 commit 45c80fdCopy full SHA for 45c80fd
.github/workflows/wheels.yml
@@ -94,7 +94,7 @@ jobs:
94
MATRIX=$(
95
{
96
cibuildwheel --print-build-identifiers --platform linux \
97
- | grep -E 'manylinux_(x86_64|aarch64)' \
+ | grep -E 'manylinux_(x86_64)' \
98
| grep -E 'cp3(12|13)-' \
99
| jq -nRc '{"only": inputs, "os": "ubuntu-latest"}' \
100
&& cibuildwheel --print-build-identifiers --platform macos \
@@ -132,6 +132,10 @@ jobs:
132
uses: docker/setup-qemu-action@v3
133
with:
134
platforms: all
135
+ - name: Install libgcrypt on macOS
136
+ if: runner.os == 'macOS'
137
+ run: |
138
+ brew install libgcrypt
139
140
- name: Build wheels
141
uses: pypa/cibuildwheel@v2.21.3
0 commit comments