File tree Expand file tree Collapse file tree 1 file changed +13
-7
lines changed Expand file tree Collapse file tree 1 file changed +13
-7
lines changed Original file line number Diff line number Diff line change @@ -22,14 +22,20 @@ jobs:
22
22
- name : Install dependencies
23
23
run : |
24
24
pip install --upgrade pip
25
- pip install .
26
- pip install pyqt5 pytest \
27
- ipykernel[test] \
28
- qtconsole[test] \
29
- nbclient[test] \
30
- nbconvert[test] \
31
- jupyter_server[test]
25
+ pip install pyqt5 pytest
26
+ pip install ipykernel[test]
27
+ pip install --pre -U --upgrade-strategy=only-if-needed ipykernel
28
+ pip install qtconsole[test]
29
+ pip install --pre -U --upgrade-strategy=only-if-needed qtconsole
30
+ pip install nbclient[test]
31
+ pip install --pre -U --upgrade-strategy=only-if-needed nbclient
32
+ pip install nbconvert[test]
33
+ pip install --pre -U --upgrade-strategy=only-if-needed nbconvert
34
+ pip install jupyter_server[test]
35
+ pip install --pre -U --upgrade-strategy=only-if-needed jupyter_server
36
+ pip install . --force-reinstall
32
37
pip freeze
38
+ python -c 'import jupyter_client; print("jupyter_client", jupyter_client.__version__)'
33
39
34
40
- name : Test ipykernel
35
41
if : ${{ always() }}
You can’t perform that action at this time.
0 commit comments