Skip to content

Commit 4bf5383

Browse files
committed
Release v0.3.1
1 parent 511897a commit 4bf5383

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

plugins/akernel_task/pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ requires-python = ">=3.9"
1111
dependencies = [
1212
"jupyverse-api >=0.10.0,<0.11.0",
1313
"anyio",
14+
"akernel",
1415
]
1516

1617
[[project.authors]]

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "akernel"
7-
version = "0.3.0"
7+
version = "0.3.1"
88
description = "An asynchronous Python Jupyter kernel"
99
readme = "README.md"
1010
license = {text = "MIT"}

src/akernel/connect.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
from __future__ import annotations
22

3+
from typing import Union
4+
35
import zmq
46
from zmq import Context
57
from zmq_anyio import Socket
68

79

810
context = Context()
911

10-
cfg_t = dict[str, str | int]
12+
cfg_t = dict[str, Union[str, int]]
1113

1214
channel_socket_types = {
1315
"shell": zmq.ROUTER,

0 commit comments

Comments
 (0)