[CI] disable pypy wheel (#2423)

emitting warnings from C++ code requires "#include pybind11/exec.h"
which is not compatible with pypy. I think using the python interpreter
form C++ is a bad idea in general... but we probably don't care much
about pypy wheels anyway
This commit is contained in:
Philippe Tillet
2023-09-29 23:48:08 -07:00
committed by GitHub
parent 533efd0cac
commit c4f3afc020

View File

@@ -46,8 +46,8 @@ jobs:
export CIBW_MANYLINUX_X86_64_IMAGE="quay.io/pypa/manylinux2014_x86_64:latest"
#export CIBW_MANYLINUX_PYPY_X86_64_IMAGE="quay.io/pypa/manylinux2014_x86_64:latest"
export CIBW_BEFORE_BUILD="pip install cmake;"
export CIBW_SKIP="{cp,pp}{35,36}-*"
export CIBW_BUILD="{cp,pp}3*-manylinux_x86_64"
export CIBW_SKIP="{cp}{35,36}-*"
export CIBW_BUILD="{cp}3*-manylinux_x86_64"
python3 -m cibuildwheel python --output-dir wheelhouse
- name: Install Azure CLI