We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2820cee commit 5436c02Copy full SHA for 5436c02
.github/workflows/build.yml
@@ -157,7 +157,11 @@ jobs:
157
${{ matrix.python-version }} -m pip install --upgrade wheel
158
${{ matrix.python-version }} -m pip install --upgrade setuptools
159
${{ matrix.python-version }} -m pip install --upgrade build
160
- ${{ matrix.python-version }} -m pip install --upgrade auditwheel
+ if [[ "${{ matrix.python-version }}" == pypy* ]]; then
161
+ ${{ matrix.python-version }} -m pip install "auditwheel<5.0"
162
+ else
163
+ ${{ matrix.python-version }} -m pip install --upgrade auditwheel
164
+ fi
165
${{ matrix.python-version }} -m pip install --upgrade patchelf
166
${{ matrix.python-version }} -m pip show -f patchelf
167
${{ matrix.python-version }} -m build --wheel
0 commit comments