File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed
Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ requires-python = ">=3.9"
1111dependencies = [
1212 " jupyverse-api >=0.10.0,<0.11.0" ,
1313 " anyio" ,
14+ " akernel" ,
1415]
1516
1617[[project .authors ]]
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44
55[project ]
66name = " akernel"
7- version = " 0.3.0 "
7+ version = " 0.3.1 "
88description = " An asynchronous Python Jupyter kernel"
99readme = " README.md"
1010license = {text = " MIT" }
Original file line number Diff line number Diff line change 11from __future__ import annotations
22
3+ from typing import Union
4+
35import zmq
46from zmq import Context
57from zmq_anyio import Socket
68
79
810context = Context ()
911
10- cfg_t = dict [str , str | int ]
12+ cfg_t = dict [str , Union [ str , int ] ]
1113
1214channel_socket_types = {
1315 "shell" : zmq .ROUTER ,
You can’t perform that action at this time.
0 commit comments