Skip to content

Commit

Permalink
Upgrade only package, not tests
Browse files Browse the repository at this point in the history
  • Loading branch information
davidbrochart committed Aug 16, 2021
1 parent a34d28e commit ff4e171
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/downstream.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,16 @@ jobs:
run: |
pip install --upgrade pip
pip install pyqt5 pytest
pip install --pre -U --upgrade-strategy=only-if-needed ipykernel[test]
pip install --pre -U --upgrade-strategy=only-if-needed qtconsole[test]
pip install --pre -U --upgrade-strategy=only-if-needed nbclient[test]
pip install --pre -U --upgrade-strategy=only-if-needed nbconvert[test]
pip install --pre -U --upgrade-strategy=only-if-needed jupyter_server[test]
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__)'
Expand Down

0 comments on commit ff4e171

Please sign in to comment.