Skip to content

Commit

Permalink
fix: downgrade jupyter-client
Browse files Browse the repository at this point in the history
  • Loading branch information
tueda committed Aug 12, 2024
1 parent 483d2cc commit 9278d75
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/scripts/run-tutorial-notebook.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ time {
apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
python3-pip \
&& rm -rf /var/lib/apt/lists/*
python3 -m pip install --no-cache-dir papermill
# papermill 2.4.0+ is not compatible with jupyter-client 8.0.0+.
# https://github.com/scikit-hep/pyhf/issues/2104
python3 -m pip install --no-cache-dir papermill==2.6.0 jupyter-client==7.4.9
}
echo "::endgroup::"

Expand Down

0 comments on commit 9278d75

Please sign in to comment.