From 738cd5797cc94bd675219f013323bc5544894957 Mon Sep 17 00:00:00 2001 From: Agriya Khetarpal <74401230+agriyakhetarpal@users.noreply.github.com> Date: Sat, 6 Jan 2024 03:56:30 +0530 Subject: [PATCH] Use `python -m pip` invocation instead Co-authored-by: Saransh Chopra --- .github/workflows/run_periodic_tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/run_periodic_tests.yml b/.github/workflows/run_periodic_tests.yml index 1178b2ec96..446ad9a9fb 100644 --- a/.github/workflows/run_periodic_tests.yml +++ b/.github/workflows/run_periodic_tests.yml @@ -193,10 +193,10 @@ jobs: python-version: ${{ matrix.python-version }} - name: Install PyBaMM - run: pip install -e . + run: python -m pip install -e . - name: Test pybamm_install_odes on ${{ matrix.os }} run: | - pip cache purge - pip install wget cmake + python -m pip cache purge + python -m pip install wget cmake pybamm_install_odes