execnb 0.1.13__tar.gz → 0.1.14__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.
- {execnb-0.1.13/execnb.egg-info → execnb-0.1.14}/PKG-INFO +1 -1
- execnb-0.1.14/execnb/__init__.py +1 -0
- {execnb-0.1.13 → execnb-0.1.14}/execnb/shell.py +3 -5
- {execnb-0.1.13 → execnb-0.1.14/execnb.egg-info}/PKG-INFO +1 -1
- {execnb-0.1.13 → execnb-0.1.14}/settings.ini +2 -1
- execnb-0.1.13/execnb/__init__.py +0 -1
- {execnb-0.1.13 → execnb-0.1.14}/LICENSE +0 -0
- {execnb-0.1.13 → execnb-0.1.14}/MANIFEST.in +0 -0
- {execnb-0.1.13 → execnb-0.1.14}/README.md +0 -0
- {execnb-0.1.13 → execnb-0.1.14}/execnb/_modidx.py +0 -0
- {execnb-0.1.13 → execnb-0.1.14}/execnb/nbio.py +0 -0
- {execnb-0.1.13 → execnb-0.1.14}/execnb.egg-info/SOURCES.txt +0 -0
- {execnb-0.1.13 → execnb-0.1.14}/execnb.egg-info/dependency_links.txt +0 -0
- {execnb-0.1.13 → execnb-0.1.14}/execnb.egg-info/entry_points.txt +0 -0
- {execnb-0.1.13 → execnb-0.1.14}/execnb.egg-info/not-zip-safe +0 -0
- {execnb-0.1.13 → execnb-0.1.14}/execnb.egg-info/requires.txt +0 -0
- {execnb-0.1.13 → execnb-0.1.14}/execnb.egg-info/top_level.txt +0 -0
- {execnb-0.1.13 → execnb-0.1.14}/pyproject.toml +0 -0
- {execnb-0.1.13 → execnb-0.1.14}/setup.cfg +0 -0
- {execnb-0.1.13 → execnb-0.1.14}/setup.py +0 -0
@@ -0,0 +1 @@
|
|
1
|
+
__version__ = "0.1.14"
|
@@ -129,12 +129,10 @@ def _out_nb(o, fmt):
|
|
129
129
|
if o.stdout: res.append(_out_stream(o.stdout, 'stdout'))
|
130
130
|
if o.stderr: res.append(_out_stream(o.stderr, 'stderr'))
|
131
131
|
if o.exception: res.append(_out_exc(o.exception))
|
132
|
-
|
133
|
-
if hasattr(r, '__ft__'): r = r.__ft__()
|
134
|
-
res.result = r
|
132
|
+
res.result = o.result.result
|
135
133
|
for x in o.display_objects: res.append(_mk_out(x.data, x.metadata))
|
136
|
-
if
|
137
|
-
res.append(_mk_out(*fmt.format(
|
134
|
+
if res.result is not None and not o.quiet:
|
135
|
+
res.append(_mk_out(*fmt.format(res.result), 'execute_result'))
|
138
136
|
if 'execution_count' not in o: o['execution_count']=None
|
139
137
|
for p in res:
|
140
138
|
if p["output_type"]=="execute_result": p['execution_count'] = o['execution_count']
|
@@ -9,7 +9,7 @@ user = AnswerDotAI
|
|
9
9
|
author = Jeremy Howard
|
10
10
|
author_email = j@fast.ai
|
11
11
|
branch = main
|
12
|
-
version = 0.1.
|
12
|
+
version = 0.1.14
|
13
13
|
min_python = 3.7
|
14
14
|
requirements = fastcore>=1.5.5 ipython
|
15
15
|
dev_requirements = matplotlib Pillow mistletoe
|
@@ -41,4 +41,5 @@ clear_all = False
|
|
41
41
|
put_version_in_init = True
|
42
42
|
cell_number = False
|
43
43
|
skip_procs =
|
44
|
+
update_pyproject = True
|
44
45
|
|
execnb-0.1.13/execnb/__init__.py
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
__version__ = "0.1.13"
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|