Skip to content

Commit 5438de2

Browse files
pauldrucePrabhakar Kumar
authored andcommitted
Adds missing dependency on ipykernel, needed by jupyter-matlab-kernel.
1 parent d41e715 commit 5438de2

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ dependencies = [
4848
"matlab-proxy>=0.10.0",
4949
"psutil",
5050
"requests",
51+
"ipykernel"
5152
]
5253

5354
[project.urls]

troubleshooting/troubleshooting.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2023 The MathWorks, Inc.
1+
# Copyright 2023-2024 The MathWorks, Inc.
22
# Script to help users troubleshoot common errors with the environment
33
# This script is designed to be used in standalone manner and to maintain
44
# that, it doesn't use utility functions present in the parent repository.
@@ -323,9 +323,11 @@ def find_executable(*args) -> list:
323323
output.append(
324324
cmd_output(
325325
name,
326-
real_executable_path
327-
if real_executable_path is not None
328-
else executable_path,
326+
(
327+
real_executable_path
328+
if real_executable_path is not None
329+
else executable_path
330+
),
329331
True if executable_path is None else False,
330332
)
331333
)

0 commit comments

Comments
 (0)