nbdev 2.3.13__py3-none-any.whl → 2.3.14__py3-none-any.whl
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.
- nbdev/__init__.py +1 -1
- nbdev/_modidx.py +2 -1
- nbdev/cli.py +64 -9
- nbdev/config.py +2 -0
- nbdev/quarto.py +5 -1
- nbdev/release.py +3 -2
- nbdev/serve.py +3 -3
- nbdev/showdoc.py +2 -2
- {nbdev-2.3.13.dist-info → nbdev-2.3.14.dist-info}/METADATA +30 -39
- {nbdev-2.3.13.dist-info → nbdev-2.3.14.dist-info}/RECORD +14 -14
- {nbdev-2.3.13.dist-info → nbdev-2.3.14.dist-info}/entry_points.txt +1 -0
- {nbdev-2.3.13.dist-info → nbdev-2.3.14.dist-info}/LICENSE +0 -0
- {nbdev-2.3.13.dist-info → nbdev-2.3.14.dist-info}/WHEEL +0 -0
- {nbdev-2.3.13.dist-info → nbdev-2.3.14.dist-info}/top_level.txt +0 -0
nbdev/__init__.py
CHANGED
nbdev/_modidx.py
CHANGED
|
@@ -24,7 +24,8 @@ d = { 'settings': { 'branch': 'master',
|
|
|
24
24
|
'nbdev.cli.chelp': ('api/cli.html#chelp', 'nbdev/cli.py'),
|
|
25
25
|
'nbdev.cli.extract_tgz': ('api/cli.html#extract_tgz', 'nbdev/cli.py'),
|
|
26
26
|
'nbdev.cli.nbdev_filter': ('api/cli.html#nbdev_filter', 'nbdev/cli.py'),
|
|
27
|
-
'nbdev.cli.nbdev_new': ('api/cli.html#nbdev_new', 'nbdev/cli.py')
|
|
27
|
+
'nbdev.cli.nbdev_new': ('api/cli.html#nbdev_new', 'nbdev/cli.py'),
|
|
28
|
+
'nbdev.cli.nbdev_update_license': ('api/cli.html#nbdev_update_license', 'nbdev/cli.py')},
|
|
28
29
|
'nbdev.config': { 'nbdev.config._apply_defaults': ('api/config.html#_apply_defaults', 'nbdev/config.py'),
|
|
29
30
|
'nbdev.config._basic_export_nb': ('api/config.html#_basic_export_nb', 'nbdev/config.py'),
|
|
30
31
|
'nbdev.config._cfg2txt': ('api/config.html#_cfg2txt', 'nbdev/config.py'),
|
nbdev/cli.py
CHANGED
|
@@ -25,7 +25,7 @@ from contextlib import redirect_stdout
|
|
|
25
25
|
import os, tarfile, sys
|
|
26
26
|
|
|
27
27
|
# %% auto 0
|
|
28
|
-
__all__ = ['nbdev_filter', 'extract_tgz', 'nbdev_new', 'chelp']
|
|
28
|
+
__all__ = ['mapping', 'nbdev_filter', 'extract_tgz', 'nbdev_new', 'nbdev_update_license', 'chelp']
|
|
29
29
|
|
|
30
30
|
# %% ../nbs/api/13_cli.ipynb 5
|
|
31
31
|
@call_parse
|
|
@@ -67,7 +67,7 @@ def _render_nb(fn, cfg):
|
|
|
67
67
|
def _update_repo_meta(cfg):
|
|
68
68
|
"Enable gh pages and update the homepage and description in your GitHub repo."
|
|
69
69
|
token=os.getenv('GITHUB_TOKEN')
|
|
70
|
-
if token:
|
|
70
|
+
if token:
|
|
71
71
|
from ghapi.core import GhApi
|
|
72
72
|
api = GhApi(owner=cfg.user, repo=cfg.repo, token=token)
|
|
73
73
|
try: api.repos.update(homepage=f'{cfg.doc_host}{cfg.doc_baseurl}', description=cfg.description)
|
|
@@ -85,13 +85,28 @@ def nbdev_new(**kwargs):
|
|
|
85
85
|
_update_repo_meta(cfg)
|
|
86
86
|
|
|
87
87
|
path = Path()
|
|
88
|
-
with warnings.catch_warnings():
|
|
89
|
-
warnings.simplefilter('ignore', UserWarning)
|
|
90
|
-
tag = GhApi(gh_host='https://api.github.com', authenticate=False).repos.get_latest_release('fastai', 'nbdev-template').tag_name
|
|
91
|
-
url = f"https://github.com/fastai/nbdev-template/archive/{tag}.tar.gz"
|
|
92
|
-
extract_tgz(url)
|
|
93
|
-
tmpl_path = path/f'nbdev-template-{tag}'
|
|
94
88
|
|
|
89
|
+
_ORG_OR_USR = 'fastai'
|
|
90
|
+
_REPOSITORY = 'nbdev-template'
|
|
91
|
+
_TEMPLATE = f'{_ORG_OR_USR}/{_TEMPLATE}'
|
|
92
|
+
template = kwargs.get('template', _TEMPLATE)
|
|
93
|
+
try:
|
|
94
|
+
org_or_usr, repo = template.split('/')
|
|
95
|
+
except ValueError:
|
|
96
|
+
org_or_usr, repo = _ORG_OR_USR, _REPOSITORY
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
tag = kwargs.get('tag', None)
|
|
100
|
+
if tag is None:
|
|
101
|
+
with warnings.catch_warnings():
|
|
102
|
+
warnings.simplefilter('ignore', UserWarning)
|
|
103
|
+
|
|
104
|
+
tag = GhApi(gh_host='https://api.github.com', authenticate=False).repos.get_latest_release(org_or_usr, repo).tag_name
|
|
105
|
+
|
|
106
|
+
url = f"https://github.com/{org_or_usr}/{repo}/archive/{tag}.tar.gz"
|
|
107
|
+
extract_tgz(url)
|
|
108
|
+
tmpl_path = path/f'{repo}-{tag}'
|
|
109
|
+
|
|
95
110
|
cfg.nbs_path.mkdir(exist_ok=True)
|
|
96
111
|
nbexists = bool(first(cfg.nbs_path.glob('*.ipynb')))
|
|
97
112
|
_nbs_path_sufs = ('.ipynb','.css')
|
|
@@ -108,7 +123,47 @@ def nbdev_new(**kwargs):
|
|
|
108
123
|
nbdev_export.__wrapped__()
|
|
109
124
|
nbdev_readme.__wrapped__()
|
|
110
125
|
|
|
111
|
-
# %% ../nbs/api/13_cli.ipynb
|
|
126
|
+
# %% ../nbs/api/13_cli.ipynb 13
|
|
127
|
+
mapping = {
|
|
128
|
+
'mit': 'mit',
|
|
129
|
+
'apache2': 'apache-2.0',
|
|
130
|
+
'gpl2': 'gpl-2.0',
|
|
131
|
+
'gpl3': 'gpl-3.0',
|
|
132
|
+
'bsd3': 'bsd-3-clause'
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
# %% ../nbs/api/13_cli.ipynb 14
|
|
136
|
+
@call_parse
|
|
137
|
+
def nbdev_update_license(
|
|
138
|
+
to: str=None, # update license to
|
|
139
|
+
):
|
|
140
|
+
"Allows you to update the license of your project."
|
|
141
|
+
from ghapi.core import GhApi
|
|
142
|
+
warnings.filterwarnings("ignore")
|
|
143
|
+
avail_lic = GhApi().licenses.get_all_commonly_used().map(lambda x: x['key'])
|
|
144
|
+
|
|
145
|
+
cfg = get_config()
|
|
146
|
+
curr_lic = cfg['license']
|
|
147
|
+
|
|
148
|
+
mapped = mapping.get(to, None)
|
|
149
|
+
|
|
150
|
+
if mapped not in avail_lic: raise ValueError(f"{to} is not an available license")
|
|
151
|
+
body = GhApi().licenses.get(mapped)['body']
|
|
152
|
+
|
|
153
|
+
body = body.replace('[year], [fullname]', cfg['copyright'])
|
|
154
|
+
body = body.replace('[year] [fullname]', cfg['copyright'])
|
|
155
|
+
|
|
156
|
+
content = open("settings.ini", "r").read()
|
|
157
|
+
content = re.sub(r"^(license\s*=\s*).*?$", r"\1 " + to, content, flags=re.MULTILINE)
|
|
158
|
+
|
|
159
|
+
config = open("settings.ini", "w")
|
|
160
|
+
config.write(content)
|
|
161
|
+
|
|
162
|
+
lic = open('LICENSE', 'w')
|
|
163
|
+
lic.write(body)
|
|
164
|
+
print(f"License updated from {curr_lic} to {to}")
|
|
165
|
+
|
|
166
|
+
# %% ../nbs/api/13_cli.ipynb 17
|
|
112
167
|
@call_parse
|
|
113
168
|
def chelp():
|
|
114
169
|
"Show help for all console scripts"
|
nbdev/config.py
CHANGED
nbdev/quarto.py
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
# %% ../nbs/api/14_quarto.ipynb 3
|
|
4
4
|
from __future__ import annotations
|
|
5
5
|
import subprocess,sys,shutil,ast,warnings,traceback
|
|
6
|
-
from os import system
|
|
6
|
+
from os import system
|
|
7
7
|
from contextlib import contextmanager
|
|
8
8
|
|
|
9
9
|
from .config import *
|
|
@@ -30,6 +30,7 @@ def _sprun(cmd):
|
|
|
30
30
|
BASE_QUARTO_URL='https://www.quarto.org/download/latest/'
|
|
31
31
|
|
|
32
32
|
def _install_linux():
|
|
33
|
+
from os import uname
|
|
33
34
|
machine = 'arm' if uname().machine in ('arm64', 'aarch64', 'armv8', 'armv8l') else 'amd'
|
|
34
35
|
system(f'curl -LO {BASE_QUARTO_URL}quarto-linux-{machine}64.deb')
|
|
35
36
|
system(f'sudo dpkg -i quarto-linux-{machine}64.deb && rm quarto-linux-{machine}64.deb')
|
|
@@ -251,6 +252,7 @@ def _save_cached_readme(cache, cfg):
|
|
|
251
252
|
def nbdev_readme(
|
|
252
253
|
path:str=None, # Path to notebooks
|
|
253
254
|
chk_time:bool=False): # Only build if out of date
|
|
255
|
+
"Create README.md from readme_nb (index.ipynb by default)"
|
|
254
256
|
cfg = get_config()
|
|
255
257
|
path = Path(path) if path else cfg.nbs_path
|
|
256
258
|
if chk_time and _readme_mtime_not_older(cfg.config_path/'README.md', path/cfg.readme_nb): return
|
|
@@ -309,6 +311,7 @@ def nbdev_preview(
|
|
|
309
311
|
path:str=None, # Path to notebooks
|
|
310
312
|
port:int=None, # The port on which to run preview
|
|
311
313
|
host:str=None, # The host on which to run preview
|
|
314
|
+
no_browser:bool=False, # Do not open a browser
|
|
312
315
|
n_workers:int=defaults.cpus, # Number of workers
|
|
313
316
|
**kwargs):
|
|
314
317
|
"Preview docs locally"
|
|
@@ -317,6 +320,7 @@ def nbdev_preview(
|
|
|
317
320
|
xtra = []
|
|
318
321
|
if port: xtra += ['--port', str(port)]
|
|
319
322
|
if host: xtra += ['--host', host]
|
|
323
|
+
if no_browser: xtra += ['--no-browser']
|
|
320
324
|
|
|
321
325
|
def _f(e):
|
|
322
326
|
res = _proc_file(Path(e.src_path), cache, path)
|
nbdev/release.py
CHANGED
|
@@ -201,8 +201,9 @@ def _get_conda_meta():
|
|
|
201
201
|
doc_url = (cfg.doc_host + cfg.doc_baseurl) if (cfg.doc_host and cfg.doc_baseurl) else url
|
|
202
202
|
dev_url = cfg.git_url if cfg.git_url else url
|
|
203
203
|
|
|
204
|
-
hostreqs = ['
|
|
205
|
-
|
|
204
|
+
hostreqs = ['packaging', f'python >={cfg.min_python}']
|
|
205
|
+
reqs = hostreqs+[]
|
|
206
|
+
if cfg.get('requirements'): reqs += cfg.requirements.split()
|
|
206
207
|
if cfg.get('conda_requirements'): reqs += cfg.conda_requirements.split()
|
|
207
208
|
|
|
208
209
|
pypi = pypi_json(f'{name}/{ver}')
|
nbdev/serve.py
CHANGED
|
@@ -62,15 +62,15 @@ def proc_nbs(
|
|
|
62
62
|
cfg = get_config()
|
|
63
63
|
cache = cfg.config_path/'_proc'
|
|
64
64
|
path = Path(path or cfg.nbs_path)
|
|
65
|
-
files = nbglob(path, func=Path, file_glob=
|
|
65
|
+
files = nbglob(path, func=Path, file_glob=file_glob, file_re=file_re, **kwargs)
|
|
66
66
|
if (path/'_quarto.yml').exists(): files.append(path/'_quarto.yml')
|
|
67
|
-
if (path/'_extensions').exists(): files.extend(nbglob(path/'_extensions', func=Path, file_glob=
|
|
67
|
+
if (path/'_extensions').exists(): files.extend(nbglob(path/'_extensions', func=Path, file_glob=file_glob, file_re=file_re, skip_file_re='^[.]'))
|
|
68
68
|
|
|
69
69
|
# If settings.ini or filter script newer than cache folder modified, delete cache
|
|
70
70
|
chk_mtime = max(cfg.config_file.stat().st_mtime, Path(__file__).stat().st_mtime)
|
|
71
71
|
cache.mkdir(parents=True, exist_ok=True)
|
|
72
72
|
cache_mtime = cache.stat().st_mtime
|
|
73
|
-
if force or (cache.exists and cache_mtime<chk_mtime): rmtree(cache)
|
|
73
|
+
if force or (cache.exists() and cache_mtime<chk_mtime): rmtree(cache)
|
|
74
74
|
|
|
75
75
|
files = files.map(_proc_file, mtime=cache_mtime, cache=cache, path=path).filter()
|
|
76
76
|
kw = {} if IN_NOTEBOOK else {'method':'spawn'}
|
nbdev/showdoc.py
CHANGED
|
@@ -171,7 +171,7 @@ class BasicMarkdownRenderer(ShowDocRenderer):
|
|
|
171
171
|
doc += f'{h} {self.nm}\n\n'
|
|
172
172
|
sig = _wrap_sig(f"{self.nm} {_fmt_sig(self.sig)}") if self.sig else ''
|
|
173
173
|
doc += f'{sig}'
|
|
174
|
-
if self.docs: doc += f"\n\n{self.docs}"
|
|
174
|
+
if self.docs: doc += f"\n\n*{self.docs}*"
|
|
175
175
|
if self.dm.has_docment: doc += f"\n\n{self.dm}"
|
|
176
176
|
return doc
|
|
177
177
|
__repr__=__str__=_repr_markdown_
|
|
@@ -199,7 +199,7 @@ class BasicHtmlRenderer(ShowDocRenderer):
|
|
|
199
199
|
doc = '<hr/>\n'
|
|
200
200
|
doc += f'<h{self.title_level}>{self.nm}</h{self.title_level}>\n'
|
|
201
201
|
doc += f'<blockquote><pre><code>{self.nm}{_fmt_sig(self.sig)}</code></pre></blockquote>'
|
|
202
|
-
if self.docs: doc += f"<p>{self.docs}</p>"
|
|
202
|
+
if self.docs: doc += f"<p><i>{self.docs}</i></p>"
|
|
203
203
|
return doc
|
|
204
204
|
|
|
205
205
|
def doc(self):
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: nbdev
|
|
3
|
-
Version: 2.3.
|
|
3
|
+
Version: 2.3.14
|
|
4
4
|
Summary: Create delightful software with Jupyter Notebooks
|
|
5
5
|
Home-page: https://github.com/fastai/nbdev
|
|
6
6
|
Author: Jeremy Howard and Hamel Husain
|
|
@@ -20,6 +20,7 @@ Classifier: License :: OSI Approved :: Apache Software License
|
|
|
20
20
|
Requires-Python: >=3.7
|
|
21
21
|
Description-Content-Type: text/markdown
|
|
22
22
|
License-File: LICENSE
|
|
23
|
+
Requires-Dist: packaging
|
|
23
24
|
Requires-Dist: ipywidgets <=8.0.4
|
|
24
25
|
Requires-Dist: fastcore >=1.5.27
|
|
25
26
|
Requires-Dist: execnb >=0.1.4
|
|
@@ -43,15 +44,6 @@ Requires-Dist: jupyter ; extra == 'dev'
|
|
|
43
44
|
|
|
44
45
|

|
|
45
46
|
|
|
46
|
-
*NB: This is nbdev v2, a major upgrade of nbdev. Whilst the differences
|
|
47
|
-
to nbdev1 aren’t huge, it does require some changes. The old version
|
|
48
|
-
docs are at [nbdev1.fast.ai](https://nbdev1.fast.ai). You can use
|
|
49
|
-
version-pinning in `settings.ini` (i.e `'nbdev<2'`) to stop nbdev from
|
|
50
|
-
upgrading. To upgrade, follow the [migration
|
|
51
|
-
tutorial](https://nbdev.fast.ai/migrating.html).*
|
|
52
|
-
|
|
53
|
-
------------------------------------------------------------------------
|
|
54
|
-
|
|
55
47
|
`nbdev` is a notebook-driven development platform. Simply write
|
|
56
48
|
notebooks with lightweight markup and get high-quality documentation,
|
|
57
49
|
tests, continuous integration, and packaging for free!
|
|
@@ -130,35 +122,34 @@ available commands:
|
|
|
130
122
|
!nbdev_help
|
|
131
123
|
```
|
|
132
124
|
|
|
133
|
-
nbdev_bump_version
|
|
134
|
-
nbdev_changelog
|
|
135
|
-
nbdev_clean
|
|
136
|
-
nbdev_conda
|
|
137
|
-
nbdev_create_config
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
nbdev_update Propagate change in modules matching `fname` to notebooks that created them
|
|
125
|
+
nbdev_bump_version Increment version in settings.ini by one
|
|
126
|
+
nbdev_changelog Create a CHANGELOG.md file from closed and labeled GitHub issues
|
|
127
|
+
nbdev_clean Clean all notebooks in `fname` to avoid merge conflicts
|
|
128
|
+
nbdev_conda Create a `meta.yaml` file ready to be built into a package, and optionally build and upload it
|
|
129
|
+
nbdev_create_config Create a config file.
|
|
130
|
+
nbdev_docs Create Quarto docs and README.md
|
|
131
|
+
nbdev_export Export notebooks in `path` to Python modules
|
|
132
|
+
nbdev_filter A notebook filter for Quarto
|
|
133
|
+
nbdev_fix Create working notebook from conflicted notebook `nbname`
|
|
134
|
+
nbdev_help Show help for all console scripts
|
|
135
|
+
nbdev_install Install Quarto and the current library
|
|
136
|
+
nbdev_install_hooks Install Jupyter and git hooks to automatically clean, trust, and fix merge conflicts in notebooks
|
|
137
|
+
nbdev_install_quarto Install latest Quarto on macOS or Linux, prints instructions for Windows
|
|
138
|
+
nbdev_merge Git merge driver for notebooks
|
|
139
|
+
nbdev_migrate Convert all markdown and notebook files in `path` from v1 to v2
|
|
140
|
+
nbdev_new Create an nbdev project.
|
|
141
|
+
nbdev_prepare Export, test, and clean notebooks, and render README if needed
|
|
142
|
+
nbdev_preview Preview docs locally
|
|
143
|
+
nbdev_proc_nbs Process notebooks in `path` for docs rendering
|
|
144
|
+
nbdev_pypi Create and upload Python package to PyPI
|
|
145
|
+
nbdev_readme Create README.md from readme_nb (index.ipynb by default)
|
|
146
|
+
nbdev_release_both Release both conda and PyPI packages
|
|
147
|
+
nbdev_release_gh Calls `nbdev_changelog`, lets you edit the result, then pushes to git and calls `nbdev_release_git`
|
|
148
|
+
nbdev_release_git Tag and create a release in GitHub for the current version
|
|
149
|
+
nbdev_sidebar Create sidebar.yml
|
|
150
|
+
nbdev_test Test in parallel notebooks matching `path`, passing along `flags`
|
|
151
|
+
nbdev_trust Trust notebooks matching `fname`
|
|
152
|
+
nbdev_update Propagate change in modules matching `fname` to notebooks that created them
|
|
162
153
|
|
|
163
154
|
## FAQ
|
|
164
155
|
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
nbdev/__init__.py,sha256=
|
|
2
|
-
nbdev/_modidx.py,sha256=
|
|
1
|
+
nbdev/__init__.py,sha256=Lvc7TM66PIvnPiPsx8AcP4Y5wo23vGqy1GYdDnNAzZY,90
|
|
2
|
+
nbdev/_modidx.py,sha256=TdX0nyg7miq1j7D_LN99_kAmqQJEbrrlIJ7XBM1PDHs,39709
|
|
3
3
|
nbdev/clean.py,sha256=lLtfhCLjkDBqf8MvIG9lDSWSmA9vUDvn2QhS6LPprHI,9284
|
|
4
|
-
nbdev/cli.py,sha256=
|
|
5
|
-
nbdev/config.py,sha256=
|
|
4
|
+
nbdev/cli.py,sha256=nn9UxmpJaA_NorxDwP6jlFl5XnmWQdFqJHt0XAaKfbM,5637
|
|
5
|
+
nbdev/config.py,sha256=fTTtYCQHyp8sXCFAyGN93eLOr3N3uOkv4LJ5-9Bclxs,12235
|
|
6
6
|
nbdev/doclinks.py,sha256=X5d8Xz52p-LlWwhhCN6d-00RQ0E8BsONuPH_xUSA6kc,10287
|
|
7
7
|
nbdev/export.py,sha256=LEhn7UpfMSm9QKrC31q91Bsw-ZHd68DNv7MjhsNi15A,3275
|
|
8
8
|
nbdev/extract_attachments.py,sha256=O4mS4EFIOXL_yQ3jmsnBStrWxGR_nPNvxLYXHtLeimw,2208
|
|
@@ -14,16 +14,16 @@ nbdev/migrate.py,sha256=l2hO2Ymkjm1C3_JmFDsM-DN6bxgFeLjj-pBr1xNqunI,7317
|
|
|
14
14
|
nbdev/process.py,sha256=7dl9U7JLL9wbJta-KKTTnkMktBVsK5s-y8OBxtfk68I,5863
|
|
15
15
|
nbdev/processors.py,sha256=GyF0UAb9SQ9KEzqPF-iK9-FOtFzcUJENI8pY3sRhLcg,10048
|
|
16
16
|
nbdev/qmd.py,sha256=3Cskd8ynm25Hh7bo-_t0hxCMF6jqXxgq_VfkpLBKu_w,2958
|
|
17
|
-
nbdev/quarto.py,sha256=
|
|
18
|
-
nbdev/release.py,sha256=
|
|
19
|
-
nbdev/serve.py,sha256=
|
|
17
|
+
nbdev/quarto.py,sha256=uPburjx-OG9ruNTI08Ku_iOV5gerUUGNQUXDeOGmAco,12017
|
|
18
|
+
nbdev/release.py,sha256=1rqBx77XPWSfb9JW8X7rTyaHz7wc4aRd3BHIkJafcKI,14229
|
|
19
|
+
nbdev/serve.py,sha256=7Gpu8tQGrHzNW4UJO-xz6AWQo7xKTWxXOOsHq606M58,3044
|
|
20
20
|
nbdev/serve_drv.py,sha256=IZ2acem_KKsXYYe0iUECiR_orkYLBkT1ZG_258ZS7SQ,657
|
|
21
|
-
nbdev/showdoc.py,sha256=
|
|
21
|
+
nbdev/showdoc.py,sha256=sWkpTLpWLUMQBsysHqyvS7czIVcmfkJ_pjSU3zcp-AI,9150
|
|
22
22
|
nbdev/sync.py,sha256=ZKcWRJd49EaYJXeIB8hSa8oWHDrqRWoyRbGUGHDYxJg,2898
|
|
23
23
|
nbdev/test.py,sha256=74db-sK_rnc69Q3beztibXDSZUeOk6M9nIiIORLHzlo,4397
|
|
24
|
-
nbdev-2.3.
|
|
25
|
-
nbdev-2.3.
|
|
26
|
-
nbdev-2.3.
|
|
27
|
-
nbdev-2.3.
|
|
28
|
-
nbdev-2.3.
|
|
29
|
-
nbdev-2.3.
|
|
24
|
+
nbdev-2.3.14.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
25
|
+
nbdev-2.3.14.dist-info/METADATA,sha256=esMAIjRT278jcHcSxvuv-lJyTkUhsDz9O57vHJ7GfV4,10161
|
|
26
|
+
nbdev-2.3.14.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
|
|
27
|
+
nbdev-2.3.14.dist-info/entry_points.txt,sha256=lFZD1JQyZQI8x8PuaaSqbfnhInHhpm56nCR6n84nFKk,1272
|
|
28
|
+
nbdev-2.3.14.dist-info/top_level.txt,sha256=3cWYLMuaXsZjz3TQRGEkWGs9Z8ieEDmYcq8TZS3y3vU,6
|
|
29
|
+
nbdev-2.3.14.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|