Skip to content

Commit f6e375d

Browse files
authored
Update build.yml
1 parent d761e25 commit f6e375d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,10 @@ jobs:
2727
CIBW_MANYLINUX_X86_64_IMAGE: manylinux2014
2828
CIBW_BEFORE_BUILD: |
2929
yum install -y libjpeg-devel zlib-devel gcc gcc-c++ libffi-devel python3-devel
30-
pip install --upgrade pip setuptools wheel
30+
if [[ "${CIBW_PYTHON_IMPLEMENTATION}" == "pypy" ]]; then
31+
pip install --upgrade "setuptools<72.2.0";
32+
fi
33+
pip install --upgrade pip wheel
3134
run: cibuildwheel --platform linux
3235

3336
# Step 4: Upload wheels to PyPI

0 commit comments

Comments
 (0)