conkernelclient 0.0.6__tar.gz → 0.0.8__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: conkernelclient
3
- Version: 0.0.6
3
+ Version: 0.0.8
4
4
  Summary: Concurrent-safe Jupyter KernelClient
5
5
  Author-email: Jeremy Howard <github@jhoward.fastmail.fm>
6
6
  License: Apache-2.0
@@ -0,0 +1,2 @@
1
+ __version__ = "0.0.8"
2
+ from .core import *
@@ -95,7 +95,7 @@ class ConKernelClient(AsyncKernelClient):
95
95
  async def stdin_send(self, msg:dict):
96
96
  "Send on `stdin_channel` then ping event loop"
97
97
  self.stdin_channel.send(msg)
98
- await asyncio.sleep(0)
98
+ await asyncio.sleep(0.01)
99
99
 
100
100
  # %% ../nbs/00_core.ipynb #b828c222
101
101
  class ConKernelManager(AsyncKernelManager): client_class,client_factory = ConKernelClient,Type(ConKernelClient)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: conkernelclient
3
- Version: 0.0.6
3
+ Version: 0.0.8
4
4
  Summary: Concurrent-safe Jupyter KernelClient
5
5
  Author-email: Jeremy Howard <github@jhoward.fastmail.fm>
6
6
  License: Apache-2.0
@@ -1,2 +0,0 @@
1
- __version__ = "0.0.6"
2
- from .core import *
File without changes