Skip to content

Commit

Permalink
fix: Downgrade jupyter-client for papermill to work (#2105)
Browse files Browse the repository at this point in the history
* As a temporary fix to Issue #2104, downgrade jupyter-client to a
  version less than v8.0.0 so that papermill is able to run.
  This is not a sufficient fix and an alternative to using papermill
  should be considered.
  • Loading branch information
matthewfeickert authored Jan 31, 2023
1 parent 5568a3c commit 98ae036
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/notebooks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
python -m pip install --upgrade .[test]
# FIXME: c.f. https://github.com/scikit-hep/pyhf/issues/2104
python -m pip install --upgrade .[test] 'jupyter-client<8.0.0'
- name: List installed Python packages
run: python -m pip list
Expand Down

0 comments on commit 98ae036

Please sign in to comment.