fps_akernel_task 0.1.0__tar.gz → 0.1.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: fps_akernel_task
3
- Version: 0.1.0
3
+ Version: 0.1.2
4
4
  Summary: An FPS plugin for the kernel task API
5
5
  Project-URL: Homepage, https://github.com/davidbrochart/akernel
6
6
  Author-email: David Brochart <david.brochart@gmail.com>
@@ -8,6 +8,7 @@ License: MIT
8
8
  License-File: LICENSE
9
9
  Keywords: fastapi,jupyter,plugins,server
10
10
  Requires-Python: >=3.9
11
+ Requires-Dist: akernel
11
12
  Requires-Dist: anyio
12
13
  Requires-Dist: jupyverse-api<0.11.0,>=0.10.0
13
14
  Description-Content-Type: text/markdown
@@ -4,13 +4,14 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "fps_akernel_task"
7
- version = "0.1.0"
7
+ version = "0.1.2"
8
8
  description = "An FPS plugin for the kernel task API"
9
9
  keywords = ["jupyter", "server", "fastapi", "plugins"]
10
10
  requires-python = ">=3.9"
11
11
  dependencies = [
12
12
  "jupyverse-api >=0.10.0,<0.11.0",
13
13
  "anyio",
14
+ "akernel",
14
15
  ]
15
16
 
16
17
  [[project.authors]]
@@ -13,7 +13,6 @@ class AKernelTask(_Kernel):
13
13
 
14
14
  async def start(self, *, task_status: TaskStatus[None] = TASK_STATUS_IGNORED) -> None:
15
15
  async with (
16
- create_task_group() as self.task_group,
17
16
  self._to_shell_send_stream,
18
17
  self._to_shell_receive_stream,
19
18
  self._from_shell_send_stream,
@@ -28,6 +27,7 @@ class AKernelTask(_Kernel):
28
27
  self._from_stdin_receive_stream,
29
28
  self._from_iopub_send_stream,
30
29
  self._from_iopub_receive_stream,
30
+ create_task_group() as self.task_group,
31
31
  ):
32
32
  self.kernel = Kernel(
33
33
  self._to_shell_receive_stream,