diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 967355f73..091b19ddc 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -92,7 +92,9 @@ jobs: run: cmake --build build --config $BUILD_TYPE - name: Build Python wheel - run: cmake --build build -t pypangolin_wheel + run: | + cmake --build build -t pypangolin_wheel + PIP_BREAK_SYSTEM_PACKAGES=1 pip install build/*.whl - name: Run all tests if: ${{ matrix.test == 'ON' }}