From 6d243212dcafd3b06132c6cf3977f48b67890748 Mon Sep 17 00:00:00 2001 From: Yifei Kong Date: Wed, 31 Jan 2024 16:02:04 +0800 Subject: [PATCH] Install missing pipx --- .github/workflows/build-and-test.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-and-test.yaml b/.github/workflows/build-and-test.yaml index 7a8f2a7d..50202fff 100644 --- a/.github/workflows/build-and-test.yaml +++ b/.github/workflows/build-and-test.yaml @@ -45,7 +45,9 @@ jobs: # macOS make is too old - if: runner.os == 'macOS' - run: brew install make + run: | + brew install make + which pipx || brew install pipx - name: Build and test wheels uses: pypa/cibuildwheel@v2.12.0