File tree Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -30,11 +30,15 @@ jobs:
3030 uses : actions/setup-node@v2
3131 with :
3232 node : 14.x
33- - name : Install packaging dependencies
33+ - name : Install installation dependencies
3434 run : |
3535 set -eux
36- python -m pip install -vv -U --user pip wheel setuptools 'jupyterlab~=3.0'
36+ python -m pip install -vv -U --user pip wheel setuptools
3737 yarn --version || npm install -g yarn
38+ - name : Install packaging dependencies
39+ run : |
40+ set -eux
41+ python -m pip install -vv 'jupyterlab~=3.0'
3842 - name : Pre-install node dependencies
3943 run : |
4044 set -eux
7074 uses : actions/setup-python@v2
7175 with :
7276 python-version : 3.9
73- - name : Install packaging dependencies
77+ - name : Install installation dependencies
7478 run : |
7579 set -eux
7680 python -m pip install -vv -U --user pip wheel setuptools
@@ -153,7 +157,7 @@ jobs:
153157 run : |
154158 set -eux
155159 ${{ matrix.py_cmd }} -m pip install -vv --user -U pip wheel setuptools
156- - name : Install package (maybe lab)
160+ - name : Install package
157161 run : |
158162 set -eux
159163 cd dist
@@ -164,7 +168,7 @@ jobs:
164168 ${{ matrix.py_cmd }} -m pip freeze
165169 ${{ matrix.py_cmd }} -m pip check
166170 - if : ${{ matrix.lab }}
167- name : Install lab
171+ name : Install JupyterLab
168172 run : |
169173 set -eux
170174 ${{ matrix.py_cmd }} -m pip install -vv 'jupyterlab==${{ matrix.lab }}.*'
You can’t perform that action at this time.
0 commit comments