Skip to content

Commit 98ae036

Browse files
fix: Downgrade jupyter-client for papermill to work (#2105)
* 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.
1 parent 5568a3c commit 98ae036

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/notebooks.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ jobs:
2929
- name: Install dependencies
3030
run: |
3131
python -m pip install --upgrade pip setuptools wheel
32-
python -m pip install --upgrade .[test]
32+
# FIXME: c.f. https://github.com/scikit-hep/pyhf/issues/2104
33+
python -m pip install --upgrade .[test] 'jupyter-client<8.0.0'
3334
3435
- name: List installed Python packages
3536
run: python -m pip list

0 commit comments

Comments
 (0)