From e2cad9145c6e122e8c1fa1953a2f847c5f85ba98 Mon Sep 17 00:00:00 2001 From: Axel Huebl Date: Mon, 4 Dec 2023 19:05:42 -0800 Subject: [PATCH] CI: Pipx for openPMD-validator Replace `pip` with `pipx` for proper entry points. --- .github/workflows/macos.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 307440a5b..ddfd08e7a 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -42,7 +42,8 @@ jobs: python3 -m pip install --upgrade pytest python3 -m pip install --upgrade -r requirements_mpi.txt python3 -m pip install --upgrade -r examples/requirements.txt - python3 -m pip install --upgrade openPMD-validator + python3 -m pip install --upgrade pipx + python3 -m pipx install --upgrade openPMD-validator set -e - name: CCache Cache uses: actions/cache@v3