File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed
Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change 4242from .provisioning import KernelProvisionerBase
4343from .provisioning import KernelProvisionerFactory as KPF # noqa
4444
45+ # After an upgrade to Sphinx 9 and myst 5, the doc build started to fail
46+ # with the following error: :8: (ERROR/3) Unexpected indentation.
47+ # This seems to be due to the docstring of the wrapper function inside
48+ # in_pending_state. However, removing the docstring doe snot fix the issue
49+ # since we use the :undoc-members: directive with automodule.
50+ # The workaround is to explicitly set what we want to document
51+
52+ __all__ = [
53+ "KernelManager" ,
54+ "AsyncKernelManager" ,
55+ "start_new_kernel" ,
56+ "start_new_async_kernel" ,
57+ "run_kernel" ,
58+ "in_pending_state" ,
59+ ]
4560
4661class _ShutdownStatus (Enum ):
4762 """
You can’t perform that action at this time.
0 commit comments