Skip to content

Commit 738cd57

Browse files
Use python -m pip invocation instead
Co-authored-by: Saransh Chopra <[email protected]>
1 parent ed3f741 commit 738cd57

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/run_periodic_tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -193,10 +193,10 @@ jobs:
193193
python-version: ${{ matrix.python-version }}
194194

195195
- name: Install PyBaMM
196-
run: pip install -e .
196+
run: python -m pip install -e .
197197

198198
- name: Test pybamm_install_odes on ${{ matrix.os }}
199199
run: |
200-
pip cache purge
201-
pip install wget cmake
200+
python -m pip cache purge
201+
python -m pip install wget cmake
202202
pybamm_install_odes

0 commit comments

Comments
 (0)