nbdev 2.3.29__py3-none-any.whl → 2.3.31__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 CHANGED
@@ -1,4 +1,4 @@
1
- __version__ = "2.3.29"
1
+ __version__ = "2.3.31"
2
2
 
3
3
  from .doclinks import nbdev_export
4
4
  from .showdoc import show_doc
nbdev/_modidx.py CHANGED
@@ -41,6 +41,7 @@ d = { 'settings': { 'branch': 'master',
41
41
  'nbdev.config.config_key': ('api/config.html#config_key', 'nbdev/config.py'),
42
42
  'nbdev.config.create_output': ('api/config.html#create_output', 'nbdev/config.py'),
43
43
  'nbdev.config.get_config': ('api/config.html#get_config', 'nbdev/config.py'),
44
+ 'nbdev.config.is_nbdev': ('api/config.html#is_nbdev', 'nbdev/config.py'),
44
45
  'nbdev.config.nbdev_create_config': ('api/config.html#nbdev_create_config', 'nbdev/config.py'),
45
46
  'nbdev.config.show_src': ('api/config.html#show_src', 'nbdev/config.py'),
46
47
  'nbdev.config.update_version': ('api/config.html#update_version', 'nbdev/config.py'),
nbdev/config.py CHANGED
@@ -3,8 +3,8 @@
3
3
  # AUTOGENERATED! DO NOT EDIT! File to edit: ../nbs/api/01_config.ipynb.
4
4
 
5
5
  # %% auto 0
6
- __all__ = ['nbdev_create_config', 'get_config', 'config_key', 'create_output', 'show_src', 'update_version', 'add_init',
7
- 'write_cells']
6
+ __all__ = ['nbdev_create_config', 'get_config', 'config_key', 'is_nbdev', 'create_output', 'show_src', 'update_version',
7
+ 'add_init', 'write_cells']
8
8
 
9
9
  # %% ../nbs/api/01_config.ipynb
10
10
  from datetime import datetime
@@ -63,6 +63,7 @@ def _apply_defaults(
63
63
  clear_all:bool_arg=False, # Remove all cell metadata and cell outputs?
64
64
  cell_number:bool_arg=True, # Add cell number to the exported file
65
65
  put_version_in_init:bool_arg=True, # Add the version to the main __init__.py in nbdev_export
66
+ skip_procs:str='', # A comma-separated list of processors that you want to skip
66
67
  ):
67
68
  "Apply default settings where missing in `cfg`."
68
69
  if getattr(cfg,'repo',None) is None:
@@ -208,6 +209,9 @@ def config_key(c, default=None, path=True, missing_ok=None):
208
209
  warn("`config_key` is deprecated. Use `get_config().get` or `get_config().path` instead.", DeprecationWarning)
209
210
  return get_config().path(c, default) if path else get_config().get(c, default)
210
211
 
212
+ # %% ../nbs/api/01_config.ipynb
213
+ def is_nbdev(): return _nbdev_config_file().exists()
214
+
211
215
  # %% ../nbs/api/01_config.ipynb
212
216
  def create_output(txt, mime):
213
217
  "Add a cell output containing `txt` of the `mime` text MIME sub-type"
nbdev/doclinks.py CHANGED
@@ -143,9 +143,10 @@ def nbdev_export(
143
143
  **kwargs):
144
144
  "Export notebooks in `path` to Python modules"
145
145
  if os.environ.get('IN_TEST',0): return
146
+ if not is_nbdev(): raise Exception('`nbdev_export` must be called from a directory within a nbdev project.')
146
147
  if procs:
147
- import nbdev.export
148
- procs = [getattr(nbdev.export, p) for p in L(procs)]
148
+ import nbdev.export
149
+ procs = [getattr(nbdev.export, p) for p in L(procs)]
149
150
  files = nbglob(path=path, as_path=True, **kwargs).sorted('name')
150
151
  for f in files: nb_export(f, procs=procs)
151
152
  add_init(get_config().lib_path)
nbdev/processors.py CHANGED
@@ -282,7 +282,8 @@ class FilterDefaults:
282
282
 
283
283
  def procs(self):
284
284
  "Processors for export"
285
- return self.base_procs() + self.xtra_procs()
285
+ skip_procs = get_config().get('skip_procs', '').split(',')
286
+ return L(self.base_procs()).filter(lambda x: x.__name__ not in skip_procs) + self.xtra_procs()
286
287
 
287
288
  def nb_proc(self, nb):
288
289
  "Get an `NBProcessor` with these processors"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: nbdev
3
- Version: 2.3.29
3
+ Version: 2.3.31
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
@@ -1,9 +1,9 @@
1
- nbdev/__init__.py,sha256=V0AkJoHiqkyoyngP3lLqQY3LjIUxTN1xBVL2pvMmm48,90
2
- nbdev/_modidx.py,sha256=Pa-Ve3zq0R4qkykuda25oQ5Jw0YXa5u0ds6QK_siSmk,40577
1
+ nbdev/__init__.py,sha256=ReFFjPgrWaySFlsH-cmisBxKdGcxzuymBgY7aQ3OpDs,90
2
+ nbdev/_modidx.py,sha256=7X6o4xjiXIFQHKsVBFE0qOF3Wuo_s2KSxGoPViqFRiM,40681
3
3
  nbdev/clean.py,sha256=mVgsW2_g7KIXAVh8mwpj86UwMN6QVM-q33PDzA27nWw,9410
4
4
  nbdev/cli.py,sha256=qGNwsrskbVazzyKDpTjwQsQcwEqAZBlFTlehHswasHs,5608
5
- nbdev/config.py,sha256=s2H8IYB6Fv3Pe7hZjC10TtF5OM_SvDM-TEHNwcTD4xs,12163
6
- nbdev/doclinks.py,sha256=t6tbISN4R-WyDCmXJeGjYadpc5kBGQnAIxBEsWw3kBw,10490
5
+ nbdev/config.py,sha256=vbNR9hUr5kcOTJrah229Wcn8o5sF92LZAEmTE9mJtoE,12345
6
+ nbdev/doclinks.py,sha256=L2KkkpC1h6f80rZ-GKj2wRb7uI8lmkXxcVEsQ7jeeoM,10607
7
7
  nbdev/export.py,sha256=P4fzzPFs0VIaWXclfU1i3JtBdMpDNqq8lmV4oKv6n9Y,3574
8
8
  nbdev/extract_attachments.py,sha256=O4mS4EFIOXL_yQ3jmsnBStrWxGR_nPNvxLYXHtLeimw,2208
9
9
  nbdev/frontmatter.py,sha256=i195bhDLWd-WUEzQT9JBoA4Ee3j6gD1dKMT8yk5fF4Y,2761
@@ -12,7 +12,7 @@ nbdev/maker.py,sha256=JrvvtG23_tgT4i-zzDrUF1GmLhdL_9j4S-dcD-GVui4,9801
12
12
  nbdev/merge.py,sha256=xmT7LMY_mQGOGl0ynqkB13M6HwJfUOTis1Xl--YDXR8,4341
13
13
  nbdev/migrate.py,sha256=3Z4i170SqtUs7nan_LbKpx-sP1EH9rrbG3BOFrIv58Y,7310
14
14
  nbdev/process.py,sha256=Vb3SN5YW2gB9rYv5ToeveOeL9qM9AGLRPXCyAFiaE3g,5853
15
- nbdev/processors.py,sha256=_tqCPskcfR9-DpBrcAgueLux8acdz3B9t6gQqKuMYLc,11858
15
+ nbdev/processors.py,sha256=CtlNBS2SUdP87XaPOXGeAF8yYgsUJURiW5Q7HNR7wt4,11975
16
16
  nbdev/qmd.py,sha256=VAxE-c1sT7y26VdyreB6j9fge-CuLbHWocRE_WbnYXg,2994
17
17
  nbdev/quarto.py,sha256=PaH3NdwgMAnAqIWM3oo9yhC0_VHvTU4ukpXNhiSOWB0,12051
18
18
  nbdev/release.py,sha256=Ucy71GzfOeOyGoeD5IoLvEaMya3-_0otDcD4gnpzCN0,14158
@@ -21,9 +21,9 @@ nbdev/serve_drv.py,sha256=IZ2acem_KKsXYYe0iUECiR_orkYLBkT1ZG_258ZS7SQ,657
21
21
  nbdev/showdoc.py,sha256=sSVyVw-hIIewJ12sxngVpvb_hoHVrmLcuZWjszqMzxE,9169
22
22
  nbdev/sync.py,sha256=eykW8weeOqoRLbNRCeKaO8QqD6_CwspOwnwgno44yxY,3088
23
23
  nbdev/test.py,sha256=_ECBd5fvfGEICIfkTI2S8w8YatL5CaPltCeDSsiH6yw,4435
24
- nbdev-2.3.29.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
25
- nbdev-2.3.29.dist-info/METADATA,sha256=F-eXE1W3BJB_BdC-rNuc08fKiPNcsjl9Lxc-NxP_8Qw,10398
26
- nbdev-2.3.29.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
27
- nbdev-2.3.29.dist-info/entry_points.txt,sha256=GMherdbuc27OmIuaaom4eNx5sTdCvAdNrZA6XLEZOA8,1326
28
- nbdev-2.3.29.dist-info/top_level.txt,sha256=3cWYLMuaXsZjz3TQRGEkWGs9Z8ieEDmYcq8TZS3y3vU,6
29
- nbdev-2.3.29.dist-info/RECORD,,
24
+ nbdev-2.3.31.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
25
+ nbdev-2.3.31.dist-info/METADATA,sha256=ON3bNstEl4GPPHHFFMnLjZoMpopPxOo7qG_OWV2Qqoc,10398
26
+ nbdev-2.3.31.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
27
+ nbdev-2.3.31.dist-info/entry_points.txt,sha256=GMherdbuc27OmIuaaom4eNx5sTdCvAdNrZA6XLEZOA8,1326
28
+ nbdev-2.3.31.dist-info/top_level.txt,sha256=3cWYLMuaXsZjz3TQRGEkWGs9Z8ieEDmYcq8TZS3y3vU,6
29
+ nbdev-2.3.31.dist-info/RECORD,,
File without changes