Skip to content

Commit 3d9e4be

Browse files
authored
Merge branch 'jupyter:main' into orjson
2 parents 260c07c + 7b4340d commit 3d9e4be

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
- os: windows-latest
5050
python-version: "3.12"
5151
- os: ubuntu-latest
52-
python-version: "pypy-3.10"
52+
python-version: "pypy-3.11"
5353
- os: ubuntu-latest
5454
python-version: "3.11"
5555
- os: macos-latest

jupyter_client/manager.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -136,9 +136,9 @@ def _context_default(self) -> zmq.Context:
136136

137137
# the class to create with our `client` method
138138
client_class: DottedObjectName = DottedObjectName(
139-
"jupyter_client.blocking.BlockingKernelClient"
139+
"jupyter_client.blocking.BlockingKernelClient", config=True
140140
)
141-
client_factory: Type = Type(klass=KernelClient)
141+
client_factory: Type = Type(klass=KernelClient, config=True)
142142

143143
@default("client_factory")
144144
def _client_factory_default(self) -> Type:
@@ -716,9 +716,9 @@ class AsyncKernelManager(KernelManager):
716716

717717
# the class to create with our `client` method
718718
client_class: DottedObjectName = DottedObjectName(
719-
"jupyter_client.asynchronous.AsyncKernelClient"
719+
"jupyter_client.asynchronous.AsyncKernelClient", config=True
720720
)
721-
client_factory: Type = Type(klass="jupyter_client.asynchronous.AsyncKernelClient")
721+
client_factory: Type = Type(klass="jupyter_client.asynchronous.AsyncKernelClient", config=True)
722722

723723
# The PyZMQ Context to use for communication with the kernel.
724724
context: Instance = Instance(zmq.asyncio.Context)

0 commit comments

Comments
 (0)