diff --git a/ci-support.sh b/ci-support.sh index 9b68d46a9ec9674078406c200d55dffef538a6e8..d1a4282bcfbc8cb50814a8b3aff4e770f643afe8 100644 --- a/ci-support.sh +++ b/ci-support.sh @@ -106,14 +106,7 @@ handle_extra_install() { if test "$EXTRA_INSTALL" != ""; then for i in $EXTRA_INSTALL ; do - if [[ "$i" = *pybind11* ]] && [[ "${PY_EXE}" == pypy* ]]; then - # context: - # https://github.com/conda-forge/pyopencl-feedstock/pull/45 - # https://github.com/pybind/pybind11/pull/2146 - with_echo "$PY_EXE" -m pip install git+https://github.com/isuruf/pybind11@pypy3 - else - with_echo "$PY_EXE" -m pip install "$i" - fi + with_echo "$PY_EXE" -m pip install "$i" done fi }