File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -20,15 +20,15 @@ jobs:
20
20
python-version : ' 3.10.14'
21
21
- name : Upgrade pip and install packages
22
22
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
25
25
- name : Print out python version and packages
26
26
run : |
27
27
python --version
28
- pip freeze
28
+ python -m pip freeze
29
29
- name : Convert test notebook
30
30
run : |
31
- jupyter nbconvert --execute --to html 01_test_notebook.ipynb
31
+ python -m jupyter nbconvert --execute --to html 01_test_notebook.ipynb
32
32
docker :
33
33
needs : build
34
34
runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments