From 9e79c4b9d4d38452a640f806e1374516f66f9e0c Mon Sep 17 00:00:00 2001 From: Laurent Raufaste Date: Wed, 31 Jan 2024 03:00:59 +0100 Subject: [PATCH] install pip on macos 14 --- .github/workflows/install.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/install.yaml b/.github/workflows/install.yaml index 41a159f50..c5747db87 100644 --- a/.github/workflows/install.yaml +++ b/.github/workflows/install.yaml @@ -37,5 +37,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4 + - if: ${{ matrix.os == 'macos-14' }} + run: python3 -m ensurepip - run: pip install . - run: mackup --help