conkernelclient 0.0.10__tar.gz → 0.0.11__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.10
3
+ Version: 0.0.11
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.11"
2
+ from .core import *
@@ -1,4 +1,6 @@
1
- """Concurrent-safe Jupyter KernelClient"""
1
+ """Concurrent-safe Jupyter KernelClient
2
+
3
+ Docs: https://AnswerDotAI.github.io/conkernelclientcore.html.md"""
2
4
 
3
5
  # AUTOGENERATED! DO NOT EDIT! File to edit: ../nbs/00_core.ipynb.
4
6
 
@@ -74,7 +76,6 @@ class ConKernelClient(AsyncKernelClient):
74
76
  q, soe = pend
75
77
  try: q.put_nowait(reply)
76
78
  except asyncio.QueueFull: pass
77
- else: _log.warning(f"Orphan reply for {reply['parent_header'].get('msg_id')}, pending={list(self._pending)}")
78
79
  cts = reply.get("content", {})
79
80
  if cts.get("status") in ("error", "aborted") and pend and soe:
80
81
  exc = RuntimeError(f"Kernel error aborted: {cts.get('ename')}: {cts.get('evalue')}")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: conkernelclient
3
- Version: 0.0.10
3
+ Version: 0.0.11
4
4
  Summary: Concurrent-safe Jupyter KernelClient
5
5
  Author-email: Jeremy Howard <github@jhoward.fastmail.fm>
6
6
  License: Apache-2.0
@@ -39,5 +39,5 @@ version = {attr = "conkernelclient.__version__"}
39
39
  include = ["conkernelclient"]
40
40
 
41
41
  [tool.nbdev]
42
- allowed_metadata_keys = ['solveit_dialog_mode', 'solveit_ver']
43
- allowed_cell_metadata_keys = ["solveit_ai"]
42
+ allowed_metadata_keys = ['solveit']
43
+ allowed_cell_metadata_keys = ['solveit_ai']
@@ -1,2 +0,0 @@
1
- __version__ = "0.0.10"
2
- from .core import *