Skip to content

Commit

Permalink
Merge pull request #675 from davidbrochart/fix_test_downstream
Browse files Browse the repository at this point in the history
Force install jupyter_client master
  • Loading branch information
Steven Silvester authored Aug 16, 2021
2 parents cbc29c9 + ff4e171 commit 31750bc
Showing 1 changed file with 13 additions and 7 deletions.
20 changes: 13 additions & 7 deletions .github/workflows/downstream.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,20 @@ jobs:
- name: Install dependencies
run: |
pip install --upgrade pip
pip install .
pip install pyqt5 pytest \
ipykernel[test] \
qtconsole[test] \
nbclient[test] \
nbconvert[test] \
jupyter_server[test]
pip install pyqt5 pytest
pip install ipykernel[test]
pip install --pre -U --upgrade-strategy=only-if-needed ipykernel
pip install qtconsole[test]
pip install --pre -U --upgrade-strategy=only-if-needed qtconsole
pip install nbclient[test]
pip install --pre -U --upgrade-strategy=only-if-needed nbclient
pip install nbconvert[test]
pip install --pre -U --upgrade-strategy=only-if-needed nbconvert
pip install jupyter_server[test]
pip install --pre -U --upgrade-strategy=only-if-needed jupyter_server
pip install . --force-reinstall
pip freeze
python -c 'import jupyter_client; print("jupyter_client", jupyter_client.__version__)'
- name: Test ipykernel
if: ${{ always() }}
Expand Down

0 comments on commit 31750bc

Please sign in to comment.