We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d761e25 commit f6e375dCopy full SHA for f6e375d
.github/workflows/build.yml
@@ -27,7 +27,10 @@ jobs:
27
CIBW_MANYLINUX_X86_64_IMAGE: manylinux2014
28
CIBW_BEFORE_BUILD: |
29
yum install -y libjpeg-devel zlib-devel gcc gcc-c++ libffi-devel python3-devel
30
- pip install --upgrade pip setuptools wheel
+ if [[ "${CIBW_PYTHON_IMPLEMENTATION}" == "pypy" ]]; then
31
+ pip install --upgrade "setuptools<72.2.0";
32
+ fi
33
+ pip install --upgrade pip wheel
34
run: cibuildwheel --platform linux
35
36
# Step 4: Upload wheels to PyPI
0 commit comments