From f206e9d838e82c8e1d80d1bb90053caa8e3d002d Mon Sep 17 00:00:00 2001 From: Aaron Jomy Date: Wed, 30 Oct 2024 10:13:13 +0100 Subject: [PATCH] [ci] Add pip no build isolation option for cppyy --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8cf15f31..a55962fb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -995,7 +995,7 @@ jobs: # Install cppyy git clone --depth=1 https://github.com/compiler-research/cppyy.git cd cppyy - python -m pip install --upgrade . --no-deps + python -m pip install --upgrade . --no-deps --no-build-isolation cd .. - name: Run cppyy on Unix Systems if: ${{ (runner.os != 'windows') && (matrix.cppyy == 'On') }}