Skip to content

Commit

Permalink
Add default kernel
Browse files Browse the repository at this point in the history
  • Loading branch information
ajparsons committed Sep 27, 2024
1 parent d5aad46 commit 118ef66
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/data_common/management/render_processing.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,10 @@ def papermill(self, slug: str, params: dict[str, Any], rerun: bool = True):
else:
add_tag_based_on_content(actual_path, "parameters", "#default-params")
pm.execute_notebook( # type: ignore
actual_path, self.papermill_path(slug), parameters=params
actual_path,
self.papermill_path(slug),
parameters=params,
kernel_name="python3",
)

def rendered_filename(self, slug: str, ext: str = ".md") -> Path:
Expand Down

0 comments on commit 118ef66

Please sign in to comment.