Skip to content

Commit 5323903

Browse files
committed
Always precede commands with python -m
1 parent b302c59 commit 5323903

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/build_run_test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@ jobs:
2020
python-version: '3.10.14'
2121
- name: Upgrade pip and install packages
2222
run: |
23-
pip install --upgrade pip setuptools wheel
24-
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
23+
python -m pip install --upgrade pip setuptools wheel
24+
if [ -f requirements.txt ]; then python -m pip install -r requirements.txt; fi
2525
- name: Print out python version and packages
2626
run: |
2727
python --version
28-
pip freeze
28+
python -m pip freeze
2929
- name: Convert test notebook
3030
run: |
31-
jupyter nbconvert --execute --to html 01_test_notebook.ipynb
31+
python -m jupyter nbconvert --execute --to html 01_test_notebook.ipynb
3232
docker:
3333
needs: build
3434
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)