Skip to content

Commit 31750bc

Browse files
author
Steven Silvester
authored
Merge pull request #675 from davidbrochart/fix_test_downstream
Force install jupyter_client master
2 parents cbc29c9 + ff4e171 commit 31750bc

File tree

1 file changed

+13
-7
lines changed

1 file changed

+13
-7
lines changed

.github/workflows/downstream.yml

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,20 @@ jobs:
2222
- name: Install dependencies
2323
run: |
2424
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
3237
pip freeze
38+
python -c 'import jupyter_client; print("jupyter_client", jupyter_client.__version__)'
3339
3440
- name: Test ipykernel
3541
if: ${{ always() }}

0 commit comments

Comments
 (0)