Skip to content

Commit 5436c02

Browse files
try to fix license files not be accepting by twine
1 parent 2820cee commit 5436c02

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,11 @@ jobs:
157157
${{ matrix.python-version }} -m pip install --upgrade wheel
158158
${{ matrix.python-version }} -m pip install --upgrade setuptools
159159
${{ matrix.python-version }} -m pip install --upgrade build
160-
${{ matrix.python-version }} -m pip install --upgrade auditwheel
160+
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
161165
${{ matrix.python-version }} -m pip install --upgrade patchelf
162166
${{ matrix.python-version }} -m pip show -f patchelf
163167
${{ matrix.python-version }} -m build --wheel

0 commit comments

Comments
 (0)