From 4ec822b8718dc148a2f72d9a4ef6908b5e150b5d Mon Sep 17 00:00:00 2001 From: Cary Phillips Date: Sun, 14 Apr 2024 20:38:03 -0700 Subject: [PATCH] v16 Signed-off-by: Cary Phillips --- .github/workflows/python-wheels.yml | 7 +------ share/ci/scripts/install_pybind11.sh | 2 -- 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/.github/workflows/python-wheels.yml b/.github/workflows/python-wheels.yml index e6b4f3f10e..02ce30d070 100644 --- a/.github/workflows/python-wheels.yml +++ b/.github/workflows/python-wheels.yml @@ -49,13 +49,8 @@ jobs: with: python-version: '3.x' - - name: Setup ext environment - run: | - EXT_PATH=/usr/local - echo "EXT_PATH=$EXT_PATH" >> $GITHUB_ENV - - name: Install pybind11 - run: sudo share/ci/scripts/install_pybind11.sh 2.9.2 $EXT_PATH + run: sudo share/ci/scripts/install_pybind11.sh 2.9.2 - name: Create sdist # Only create it once. diff --git a/share/ci/scripts/install_pybind11.sh b/share/ci/scripts/install_pybind11.sh index db44c0ee58..a09c56cd4e 100755 --- a/share/ci/scripts/install_pybind11.sh +++ b/share/ci/scripts/install_pybind11.sh @@ -5,7 +5,6 @@ set -ex PYBIND11_VERSION="$1" -INSTALL_TARGET="$2" git clone https://github.com/pybind/pybind11.git cd pybind11 @@ -20,7 +19,6 @@ fi mkdir build cd build cmake -DCMAKE_BUILD_TYPE=Release \ - ${INSTALL_TARGET:+"-DCMAKE_INSTALL_PREFIX="${INSTALL_TARGET}""} \ -DPYBIND11_INSTALL=ON \ -DPYBIND11_TEST=OFF \ ../.