Skip to content

Commit

Permalink
try python3
Browse files Browse the repository at this point in the history
  • Loading branch information
jtpio committed Aug 9, 2023
1 parent dd76f3f commit 1beb66a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -177,15 +177,15 @@ jobs:
path: ./dist
- name: Install the prerequisites
run: |
python -m pip install -U pip wheel
python3 -m pip install -U pip wheel
- name: Install the package
run: |
cd dist
python -m pip install -vv 'notebook*.whl'
python3 -m pip install -vv 'notebook*.whl'
- name: Validate environment
run: |
python -m pip freeze
python -m pip check
python3 -m pip freeze
python3 -m pip check
- name: Validate the install
run: |
jupyter labextension list
Expand Down

0 comments on commit 1beb66a

Please sign in to comment.