Skip to content

Commit

Permalink
Install master versions instead of pre-releases
Browse files Browse the repository at this point in the history
  • Loading branch information
davidbrochart committed Aug 16, 2021
1 parent e0ab2a6 commit 3a35615
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/downstream.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ jobs:
- name: Install dependencies
run: |
pip install --upgrade pip
pip install pyqt5 pytest
pip install ipykernel[test] --pre
pip install qtconsole[test] --pre
pip install nbclient[test] --pre
pip install nbconvert[test] --pre
pip install jupyter_server[test] --pre
pip install pyqt5 pytest \
"ipykernel[test] @ git+git://github.com/ipython/ipykernel.git@master" \
"qtconsole[test] @ git+git://github.com/jupyter/qtconsole.git@master" \
"nbclient[test] @ git+git://github.com/jupyter/nbclient.git@master" \
"nbconvert[test] @ git+git://github.com/jupyter/nbconvert.git@main" \
"jupyter_server[test] @ git+git://github.com/jupyter-server/jupyter_server.git@master"
pip install . --force-reinstall
pip freeze
python -c 'import jupyter_client; print("jupyter_client", jupyter_client.__version__)'
Expand Down

0 comments on commit 3a35615

Please sign in to comment.