Skip to content

Commit f2de35b

Browse files
committed
bump
1 parent 1e156ed commit f2de35b

5 files changed

Lines changed: 14 additions & 21 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
<!-- do not remove -->
44

5+
## 0.1.19
6+
7+
### New Features
8+
9+
- Move nbio to fastcore ([#81](https://github.com/AnswerDotAI/execnb/issues/81))
10+
11+
12+
513
## 0.1.18
614

715
### Bugs Squashed

execnb/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.1.19"
1+
__version__ = "0.2.0"

execnb/_modidx.py

Lines changed: 1 addition & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,7 @@
55
'doc_host': 'https://AnswerDotAI.github.io',
66
'git_url': 'https://github.com/AnswerDotAI/execnb',
77
'lib_path': 'execnb'},
8-
'syms': { 'execnb.nbio': { 'execnb.nbio.NbCell': ('nbio.html#nbcell', 'execnb/nbio.py'),
9-
'execnb.nbio.NbCell.__eq__': ('nbio.html#nbcell.__eq__', 'execnb/nbio.py'),
10-
'execnb.nbio.NbCell.__hash__': ('nbio.html#nbcell.__hash__', 'execnb/nbio.py'),
11-
'execnb.nbio.NbCell.__init__': ('nbio.html#nbcell.__init__', 'execnb/nbio.py'),
12-
'execnb.nbio.NbCell.parsed_': ('nbio.html#nbcell.parsed_', 'execnb/nbio.py'),
13-
'execnb.nbio.NbCell.set_source': ('nbio.html#nbcell.set_source', 'execnb/nbio.py'),
14-
'execnb.nbio._dict2obj': ('nbio.html#_dict2obj', 'execnb/nbio.py'),
15-
'execnb.nbio._read_json': ('nbio.html#_read_json', 'execnb/nbio.py'),
16-
'execnb.nbio.dict2nb': ('nbio.html#dict2nb', 'execnb/nbio.py'),
17-
'execnb.nbio.mk_cell': ('nbio.html#mk_cell', 'execnb/nbio.py'),
18-
'execnb.nbio.nb2dict': ('nbio.html#nb2dict', 'execnb/nbio.py'),
19-
'execnb.nbio.nb2str': ('nbio.html#nb2str', 'execnb/nbio.py'),
20-
'execnb.nbio.new_nb': ('nbio.html#new_nb', 'execnb/nbio.py'),
21-
'execnb.nbio.read_nb': ('nbio.html#read_nb', 'execnb/nbio.py'),
22-
'execnb.nbio.write_nb': ('nbio.html#write_nb', 'execnb/nbio.py')},
23-
'execnb.shell': { 'execnb.shell.CaptureShell': ('shell.html#captureshell', 'execnb/shell.py'),
8+
'syms': { 'execnb.shell': { 'execnb.shell.CaptureShell': ('shell.html#captureshell', 'execnb/shell.py'),
249
'execnb.shell.CaptureShell.__init__': ('shell.html#captureshell.__init__', 'execnb/shell.py'),
2510
'execnb.shell.CaptureShell._run': ('shell.html#captureshell._run', 'execnb/shell.py'),
2611
'execnb.shell.CaptureShell.cell': ('shell.html#captureshell.cell', 'execnb/shell.py'),

execnb/shell.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@
3131
except ImportError: set_matplotlib_formats = None
3232

3333

34-
from .nbio import *
35-
from .nbio import _dict2obj
34+
from fastcore.nbio import *
35+
from fastcore.nbio import _dict2obj
3636

3737

3838
# %% ../nbs/02_shell.ipynb #6913382c

nbs/02_shell.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@
5454
"except ImportError: set_matplotlib_formats = None\n",
5555
"\n",
5656
"\n",
57-
"from execnb.nbio import *\n",
58-
"from execnb.nbio import _dict2obj\n"
57+
"from fastcore.nbio import *\n",
58+
"from fastcore.nbio import _dict2obj\n"
5959
]
6060
},
6161
{

0 commit comments

Comments
 (0)