From 54d519646ab77ccae4d9551b0de563009dd8ddf8 Mon Sep 17 00:00:00 2001 From: Isuru Fernando Date: Wed, 21 Oct 2020 22:38:53 +0200 Subject: [PATCH] pybind11 with pypy support is released now --- ci-support.sh | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/ci-support.sh b/ci-support.sh index 9b68d46..d1a4282 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 } -- GitLab