ipykernel-helper 0.0.43__tar.gz → 0.0.44__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: ipykernel-helper
3
- Version: 0.0.43
3
+ Version: 0.0.44
4
4
  Summary: Helpers for ipykernel and friends
5
5
  Author-email: Jeremy Howard <info@fast.ai>
6
6
  License: Apache-2.0
@@ -0,0 +1,2 @@
1
+ __version__ = "0.0.44"
2
+ from .core import *
@@ -395,7 +395,7 @@ async def run_cell_magic(self:InteractiveShell, magic_name, line, cell):
395
395
  return result
396
396
 
397
397
  def _await_cell_magic(lines):
398
- if lines and 'get_ipython().run_cell_magic(' in lines[0]: lines = ['await ' + lines[0]] + lines[1:]
398
+ if lines and 'get_ipython().run_cell_magic(' in lines[0] and 'await ' not in lines[0]: lines = ['await ' + lines[0]] + lines[1:]
399
399
  return lines
400
400
 
401
401
  def load_ipython_extension(ip):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ipykernel-helper
3
- Version: 0.0.43
3
+ Version: 0.0.44
4
4
  Summary: Helpers for ipykernel and friends
5
5
  Author-email: Jeremy Howard <info@fast.ai>
6
6
  License: Apache-2.0
@@ -28,4 +28,6 @@ version = {attr = "ipykernel_helper.__version__"}
28
28
  include = ["ipykernel_helper"]
29
29
 
30
30
  [tool.nbdev]
31
+ allowed_metadata_keys = ['solveit_dialog_mode', 'solveit_ver']
32
+ allowed_cell_metadata_keys = ["solveit_ai"]
31
33
  custom_sidebar = false
@@ -1,2 +0,0 @@
1
- __version__ = "0.0.43"
2
- from .core import *