nbdev 2.3.14__tar.gz → 2.3.15__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.14/nbdev.egg-info → nbdev-2.3.15}/PKG-INFO +2 -5
  2. {nbdev-2.3.14 → nbdev-2.3.15}/README.md +1 -4
  3. {nbdev-2.3.14 → nbdev-2.3.15}/nbdev/__init__.py +1 -1
  4. {nbdev-2.3.14 → nbdev-2.3.15}/nbdev/serve.py +2 -2
  5. {nbdev-2.3.14 → nbdev-2.3.15/nbdev.egg-info}/PKG-INFO +2 -5
  6. {nbdev-2.3.14 → nbdev-2.3.15}/settings.ini +3 -3
  7. {nbdev-2.3.14 → nbdev-2.3.15}/CONTRIBUTING.md +0 -0
  8. {nbdev-2.3.14 → nbdev-2.3.15}/LICENSE +0 -0
  9. {nbdev-2.3.14 → nbdev-2.3.15}/MANIFEST.in +0 -0
  10. {nbdev-2.3.14 → nbdev-2.3.15}/nbdev/_modidx.py +0 -0
  11. {nbdev-2.3.14 → nbdev-2.3.15}/nbdev/clean.py +0 -0
  12. {nbdev-2.3.14 → nbdev-2.3.15}/nbdev/cli.py +0 -0
  13. {nbdev-2.3.14 → nbdev-2.3.15}/nbdev/config.py +0 -0
  14. {nbdev-2.3.14 → nbdev-2.3.15}/nbdev/doclinks.py +0 -0
  15. {nbdev-2.3.14 → nbdev-2.3.15}/nbdev/export.py +0 -0
  16. {nbdev-2.3.14 → nbdev-2.3.15}/nbdev/extract_attachments.py +0 -0
  17. {nbdev-2.3.14 → nbdev-2.3.15}/nbdev/frontmatter.py +0 -0
  18. {nbdev-2.3.14 → nbdev-2.3.15}/nbdev/imports.py +0 -0
  19. {nbdev-2.3.14 → nbdev-2.3.15}/nbdev/maker.py +0 -0
  20. {nbdev-2.3.14 → nbdev-2.3.15}/nbdev/merge.py +0 -0
  21. {nbdev-2.3.14 → nbdev-2.3.15}/nbdev/migrate.py +0 -0
  22. {nbdev-2.3.14 → nbdev-2.3.15}/nbdev/process.py +0 -0
  23. {nbdev-2.3.14 → nbdev-2.3.15}/nbdev/processors.py +0 -0
  24. {nbdev-2.3.14 → nbdev-2.3.15}/nbdev/qmd.py +0 -0
  25. {nbdev-2.3.14 → nbdev-2.3.15}/nbdev/quarto.py +0 -0
  26. {nbdev-2.3.14 → nbdev-2.3.15}/nbdev/release.py +0 -0
  27. {nbdev-2.3.14 → nbdev-2.3.15}/nbdev/serve_drv.py +0 -0
  28. {nbdev-2.3.14 → nbdev-2.3.15}/nbdev/showdoc.py +0 -0
  29. {nbdev-2.3.14 → nbdev-2.3.15}/nbdev/sync.py +0 -0
  30. {nbdev-2.3.14 → nbdev-2.3.15}/nbdev/test.py +0 -0
  31. {nbdev-2.3.14 → nbdev-2.3.15}/nbdev.egg-info/SOURCES.txt +0 -0
  32. {nbdev-2.3.14 → nbdev-2.3.15}/nbdev.egg-info/dependency_links.txt +0 -0
  33. {nbdev-2.3.14 → nbdev-2.3.15}/nbdev.egg-info/entry_points.txt +0 -0
  34. {nbdev-2.3.14 → nbdev-2.3.15}/nbdev.egg-info/not-zip-safe +0 -0
  35. {nbdev-2.3.14 → nbdev-2.3.15}/nbdev.egg-info/requires.txt +0 -0
  36. {nbdev-2.3.14 → nbdev-2.3.15}/nbdev.egg-info/top_level.txt +0 -0
  37. {nbdev-2.3.14 → nbdev-2.3.15}/setup.cfg +0 -0
  38. {nbdev-2.3.14 → nbdev-2.3.15}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: nbdev
3
- Version: 2.3.14
3
+ Version: 2.3.15
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
@@ -40,6 +40,7 @@ Requires-Dist: jupyter; extra == "dev"
40
40
 
41
41
  # Getting Started
42
42
 
43
+
43
44
  <!-- WARNING: THIS FILE WAS AUTOGENERATED! DO NOT EDIT! -->
44
45
 
45
46
  ![CI](https://github.com/fastai/nbdev/actions/workflows/test.yaml/badge.svg)
@@ -101,15 +102,11 @@ The best way to learn how to use nbdev is to complete either the
101
102
  [written walkthrough](https://nbdev.fast.ai/tutorials/tutorial.html) or
102
103
  video walkthrough:
103
104
 
104
- <div>
105
-
106
105
  <a href="http://www.youtube.com/watch?v=l7zS8Ld4_iA" target="_blank"
107
106
  title="nbdev walkthrough"><img
108
107
  src="https://github.com/fastai/logos/raw/main/nbdev_walkthrough.png"
109
108
  style="border-radius: 10px" width="560" height="315" /></a>
110
109
 
111
- </div>
112
-
113
110
  Alternatively, there’s a [shortened version of the video
114
111
  walkthrough](https://youtu.be/67FdzLSt4aA) with coding sections sped up
115
112
  using the `unsilence` Python library – it’s 27 minutes faster, but a bit
@@ -1,5 +1,6 @@
1
1
  # Getting Started
2
2
 
3
+
3
4
  <!-- WARNING: THIS FILE WAS AUTOGENERATED! DO NOT EDIT! -->
4
5
 
5
6
  ![CI](https://github.com/fastai/nbdev/actions/workflows/test.yaml/badge.svg)
@@ -61,15 +62,11 @@ The best way to learn how to use nbdev is to complete either the
61
62
  [written walkthrough](https://nbdev.fast.ai/tutorials/tutorial.html) or
62
63
  video walkthrough:
63
64
 
64
- <div>
65
-
66
65
  <a href="http://www.youtube.com/watch?v=l7zS8Ld4_iA" target="_blank"
67
66
  title="nbdev walkthrough"><img
68
67
  src="https://github.com/fastai/logos/raw/main/nbdev_walkthrough.png"
69
68
  style="border-radius: 10px" width="560" height="315" /></a>
70
69
 
71
- </div>
72
-
73
70
  Alternatively, there’s a [shortened version of the video
74
71
  walkthrough](https://youtu.be/67FdzLSt4aA) with coding sections sped up
75
72
  using the `unsilence` Python library – it’s 27 minutes faster, but a bit
@@ -1,4 +1,4 @@
1
- __version__ = "2.3.14"
1
+ __version__ = "2.3.15"
2
2
 
3
3
  from .doclinks import nbdev_export
4
4
  from .showdoc import show_doc
@@ -62,9 +62,9 @@ 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=file_glob, file_re=file_re, **kwargs)
65
+ files = nbglob(path, func=Path, file_glob='', 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=file_glob, file_re=file_re, skip_file_re='^[.]'))
67
+ if (path/'_extensions').exists(): files.extend(nbglob(path/'_extensions', func=Path, file_glob='', 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)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: nbdev
3
- Version: 2.3.14
3
+ Version: 2.3.15
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
@@ -40,6 +40,7 @@ Requires-Dist: jupyter; extra == "dev"
40
40
 
41
41
  # Getting Started
42
42
 
43
+
43
44
  <!-- WARNING: THIS FILE WAS AUTOGENERATED! DO NOT EDIT! -->
44
45
 
45
46
  ![CI](https://github.com/fastai/nbdev/actions/workflows/test.yaml/badge.svg)
@@ -101,15 +102,11 @@ The best way to learn how to use nbdev is to complete either the
101
102
  [written walkthrough](https://nbdev.fast.ai/tutorials/tutorial.html) or
102
103
  video walkthrough:
103
104
 
104
- <div>
105
-
106
105
  <a href="http://www.youtube.com/watch?v=l7zS8Ld4_iA" target="_blank"
107
106
  title="nbdev walkthrough"><img
108
107
  src="https://github.com/fastai/logos/raw/main/nbdev_walkthrough.png"
109
108
  style="border-radius: 10px" width="560" height="315" /></a>
110
109
 
111
- </div>
112
-
113
110
  Alternatively, there’s a [shortened version of the video
114
111
  walkthrough](https://youtu.be/67FdzLSt4aA) with coding sections sped up
115
112
  using the `unsilence` Python library – it’s 27 minutes faster, but a bit
@@ -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.14
12
+ version = 2.3.15
13
13
  audience = Developers
14
14
  language = English
15
15
  custom_sidebar = True
@@ -60,8 +60,8 @@ lib_path = nbdev
60
60
  title = nbdev
61
61
  black_formatting = False
62
62
  readme_nb = getting_started.ipynb
63
- allowed_metadata_keys =
64
- allowed_cell_metadata_keys =
63
+ allowed_metadata_keys =
64
+ allowed_cell_metadata_keys =
65
65
  jupyter_hooks = True
66
66
  clean_ids = False
67
67
  clear_all = False
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