-
Notifications
You must be signed in to change notification settings - Fork 283
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[pre-commit.ci] pre-commit autoupdate (#943)
* [pre-commit.ci] pre-commit autoupdate updates: - [github.com/python-jsonschema/check-jsonschema: 0.21.0 → 0.22.0](python-jsonschema/check-jsonschema@0.21.0...0.22.0) - [github.com/psf/black: 23.1.0 → 23.3.0](psf/black@23.1.0...23.3.0) - [github.com/charliermarsh/ruff-pre-commit: v0.0.254 → v0.0.260](astral-sh/ruff-pre-commit@v0.0.254...v0.0.260) * sync deps and run lint --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Steven Silvester <[email protected]>
- Loading branch information
1 parent
c5d9e1a
commit 58017fc
Showing
12 changed files
with
42 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,10 @@ | ||
"""Client-side implementations of the Jupyter protocol""" | ||
from ._version import __version__ # noqa | ||
from ._version import protocol_version # noqa | ||
from ._version import protocol_version_info # noqa | ||
from ._version import version_info # noqa | ||
|
||
try: | ||
from .asynchronous import AsyncKernelClient # noqa | ||
from .blocking import BlockingKernelClient | ||
from .client import KernelClient | ||
from .connect import * # noqa | ||
from .launcher import * # noqa | ||
from .manager import AsyncKernelManager | ||
from .manager import KernelManager | ||
from .manager import run_kernel | ||
from .multikernelmanager import AsyncMultiKernelManager | ||
from .multikernelmanager import MultiKernelManager | ||
from .provisioning import KernelProvisionerBase | ||
from .provisioning import LocalProvisioner | ||
except ModuleNotFoundError: | ||
import warnings | ||
|
||
warnings.warn("Could not import submodules") | ||
from ._version import __version__, protocol_version, protocol_version_info, version_info | ||
from .asynchronous import AsyncKernelClient | ||
from .blocking import BlockingKernelClient | ||
from .client import KernelClient | ||
from .connect import * # noqa | ||
from .launcher import * # noqa | ||
from .manager import AsyncKernelManager, KernelManager, run_kernel | ||
from .multikernelmanager import AsyncMultiKernelManager, MultiKernelManager | ||
from .provisioning import KernelProvisionerBase, LocalProvisioner |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters