Skip to content
This repository was archived by the owner on Aug 28, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .actions/assistant.py
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ def bash_render(folder: str) -> str:
else:
cmd.append(f"# available: {AssistantCLI.DEVICE_ACCELERATOR}\n")
if AssistantCLI._valid_accelerator(folder):
cmd.append(f"python -m papermill.cli {ipynb_file} {pub_ipynb} --kernel python")
cmd.append(f"python -m papermill {ipynb_file} {pub_ipynb} --kernel python")
else:
warn("Invalid notebook's accelerator for this device. So no outputs will be generated.", RuntimeWarning)
cmd.append(f"cp {ipynb_file} {pub_ipynb}")
Expand Down
2 changes: 1 addition & 1 deletion .azure/ipynb-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
- bash: |
set -e
python -c "import torch ; mgpu = torch.cuda.device_count() ; assert mgpu > 0, f'GPU: {mgpu}'"
python -m papermill.cli --version
python -m papermill --version
displayName: 'Sanity check'

- bash: |
Expand Down
2 changes: 1 addition & 1 deletion requirements/devel.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ virtualenv
jupytext # converting
pytest>=6.0
nbval # testing
papermill # render
papermill>=2.3.4 # render
black
flake8
isort