fps_akernel_task 0.1.2__tar.gz → 0.1.4__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.2
3
+ Version: 0.1.4
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,9 +8,9 @@ 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
+ Requires-Dist: akernel>=0.3.4
12
12
  Requires-Dist: anyio
13
- Requires-Dist: jupyverse-api<0.11.0,>=0.10.0
13
+ Requires-Dist: jupyverse-api<0.12.0,>=0.11.0
14
14
  Description-Content-Type: text/markdown
15
15
 
16
16
  # fps-akernel-task
@@ -40,6 +40,7 @@ class AKernelTask(_Kernel):
40
40
  )
41
41
  self.task_group.start_soon(self.kernel.start)
42
42
  task_status.started()
43
+ self.started.set()
43
44
  await sleep_forever()
44
45
 
45
46
  async def stop(self) -> None:
@@ -4,14 +4,14 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "fps_akernel_task"
7
- version = "0.1.2"
7
+ version = "0.1.4"
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
- "jupyverse-api >=0.10.0,<0.11.0",
12
+ "jupyverse-api >=0.11.0,<0.12.0",
13
13
  "anyio",
14
- "akernel",
14
+ "akernel >=0.3.4",
15
15
  ]
16
16
 
17
17
  [[project.authors]]