Skip to content
Open
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
3 changes: 3 additions & 0 deletions nbsite/nbbuild.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,9 @@ def kc(self):
def kc(self, v):
self._kc = v
if v is not None and self._ipython_startup is not None:
# Ensure kernel is running and ready to receive execute_request messages.
# This is important for ipykernel >= 7
self._kc.kernel_info()
self._kc.execute(
self._ipython_startup,
silent=False,
Expand Down
2 changes: 1 addition & 1 deletion pixi.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ no-default-feature = true

[feature.required.dependencies]
beautifulsoup4 = "*"
ipykernel = "<7.0.0" # Temp pin
ipykernel = "*"
jinja2 = "*"
jupyter_client = "*"
myst-nb = ">=1.1"
Expand Down
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ dependencies = [
'sphinxext-rediraffe',
'packaging',
'requests',
'ipykernel <7.0', # Temp. dependency
]

[project.scripts]
Expand Down