nbdev 2.3.22__tar.gz → 2.3.23__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.
Files changed (38) hide show
  1. {nbdev-2.3.22/nbdev.egg-info → nbdev-2.3.23}/PKG-INFO +1 -1
  2. {nbdev-2.3.22 → nbdev-2.3.23}/nbdev/__init__.py +1 -1
  3. {nbdev-2.3.22 → nbdev-2.3.23}/nbdev/config.py +1 -1
  4. {nbdev-2.3.22 → nbdev-2.3.23/nbdev.egg-info}/PKG-INFO +1 -1
  5. {nbdev-2.3.22 → nbdev-2.3.23}/settings.ini +2 -2
  6. {nbdev-2.3.22 → nbdev-2.3.23}/CONTRIBUTING.md +0 -0
  7. {nbdev-2.3.22 → nbdev-2.3.23}/LICENSE +0 -0
  8. {nbdev-2.3.22 → nbdev-2.3.23}/MANIFEST.in +0 -0
  9. {nbdev-2.3.22 → nbdev-2.3.23}/README.md +0 -0
  10. {nbdev-2.3.22 → nbdev-2.3.23}/nbdev/_modidx.py +0 -0
  11. {nbdev-2.3.22 → nbdev-2.3.23}/nbdev/clean.py +0 -0
  12. {nbdev-2.3.22 → nbdev-2.3.23}/nbdev/cli.py +0 -0
  13. {nbdev-2.3.22 → nbdev-2.3.23}/nbdev/doclinks.py +0 -0
  14. {nbdev-2.3.22 → nbdev-2.3.23}/nbdev/export.py +0 -0
  15. {nbdev-2.3.22 → nbdev-2.3.23}/nbdev/extract_attachments.py +0 -0
  16. {nbdev-2.3.22 → nbdev-2.3.23}/nbdev/frontmatter.py +0 -0
  17. {nbdev-2.3.22 → nbdev-2.3.23}/nbdev/imports.py +0 -0
  18. {nbdev-2.3.22 → nbdev-2.3.23}/nbdev/maker.py +0 -0
  19. {nbdev-2.3.22 → nbdev-2.3.23}/nbdev/merge.py +0 -0
  20. {nbdev-2.3.22 → nbdev-2.3.23}/nbdev/migrate.py +0 -0
  21. {nbdev-2.3.22 → nbdev-2.3.23}/nbdev/process.py +0 -0
  22. {nbdev-2.3.22 → nbdev-2.3.23}/nbdev/processors.py +0 -0
  23. {nbdev-2.3.22 → nbdev-2.3.23}/nbdev/qmd.py +0 -0
  24. {nbdev-2.3.22 → nbdev-2.3.23}/nbdev/quarto.py +0 -0
  25. {nbdev-2.3.22 → nbdev-2.3.23}/nbdev/release.py +0 -0
  26. {nbdev-2.3.22 → nbdev-2.3.23}/nbdev/serve.py +0 -0
  27. {nbdev-2.3.22 → nbdev-2.3.23}/nbdev/serve_drv.py +0 -0
  28. {nbdev-2.3.22 → nbdev-2.3.23}/nbdev/showdoc.py +0 -0
  29. {nbdev-2.3.22 → nbdev-2.3.23}/nbdev/sync.py +0 -0
  30. {nbdev-2.3.22 → nbdev-2.3.23}/nbdev/test.py +0 -0
  31. {nbdev-2.3.22 → nbdev-2.3.23}/nbdev.egg-info/SOURCES.txt +0 -0
  32. {nbdev-2.3.22 → nbdev-2.3.23}/nbdev.egg-info/dependency_links.txt +0 -0
  33. {nbdev-2.3.22 → nbdev-2.3.23}/nbdev.egg-info/entry_points.txt +0 -0
  34. {nbdev-2.3.22 → nbdev-2.3.23}/nbdev.egg-info/not-zip-safe +0 -0
  35. {nbdev-2.3.22 → nbdev-2.3.23}/nbdev.egg-info/requires.txt +0 -0
  36. {nbdev-2.3.22 → nbdev-2.3.23}/nbdev.egg-info/top_level.txt +0 -0
  37. {nbdev-2.3.22 → nbdev-2.3.23}/setup.cfg +0 -0
  38. {nbdev-2.3.22 → nbdev-2.3.23}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: nbdev
3
- Version: 2.3.22
3
+ Version: 2.3.23
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,4 +1,4 @@
1
- __version__ = "2.3.22"
1
+ __version__ = "2.3.23"
2
2
 
3
3
  from .doclinks import nbdev_export
4
4
  from .showdoc import show_doc
@@ -63,7 +63,7 @@ def _apply_defaults(
63
63
  title='%(lib_name)s', # Quarto website title
64
64
  allowed_metadata_keys='', # Preserve the list of keys in the main notebook metadata
65
65
  allowed_cell_metadata_keys='', # Preserve the list of keys in cell level metadata
66
- jupyter_hooks:bool_arg=True, # Run Jupyter hooks?
66
+ jupyter_hooks:bool_arg=False, # Run Jupyter hooks?
67
67
  clean_ids:bool_arg=True, # Remove ids from plaintext reprs?
68
68
  clear_all:bool_arg=False, # Remove all cell metadata and cell outputs?
69
69
  put_version_in_init:bool_arg=True, # Add the version to the main __init__.py in nbdev_export
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: nbdev
3
- Version: 2.3.22
3
+ Version: 2.3.23
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
@@ -9,7 +9,7 @@ author = Jeremy Howard and Hamel Husain
9
9
  author_email = j@fast.ai
10
10
  branch = master
11
11
  min_python = 3.7
12
- version = 2.3.22
12
+ version = 2.3.23
13
13
  audience = Developers
14
14
  language = English
15
15
  custom_sidebar = True
@@ -62,7 +62,7 @@ black_formatting = False
62
62
  readme_nb = getting_started.ipynb
63
63
  allowed_metadata_keys =
64
64
  allowed_cell_metadata_keys =
65
- jupyter_hooks = True
65
+ jupyter_hooks = False
66
66
  clean_ids = False
67
67
  clear_all = False
68
68
  put_version_in_init = True
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
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