We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b302c59 commit 5323903Copy full SHA for 5323903
.github/workflows/build_run_test.yml
@@ -20,15 +20,15 @@ jobs:
20
python-version: '3.10.14'
21
- name: Upgrade pip and install packages
22
run: |
23
- pip install --upgrade pip setuptools wheel
24
- if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
+ python -m pip install --upgrade pip setuptools wheel
+ if [ -f requirements.txt ]; then python -m pip install -r requirements.txt; fi
25
- name: Print out python version and packages
26
27
python --version
28
- pip freeze
+ python -m pip freeze
29
- name: Convert test notebook
30
31
- jupyter nbconvert --execute --to html 01_test_notebook.ipynb
+ python -m jupyter nbconvert --execute --to html 01_test_notebook.ipynb
32
docker:
33
needs: build
34
runs-on: ubuntu-latest
0 commit comments