Releases: fastai/nbdev
Releases Β· fastai/nbdev
v2.3.8
New Features
- better error messages for
nbdev_migrate
(#1177) - experimental: Users can provide extra processors via the
procs
key insettings.ini
(#1157), thanks to @seeM - enable Documentation Only Sites With
nbdev
( + tutorial ) (#1121), thanks to @hamelsmu - support non-library projects (#1119)
- throw a warning when imports and code are mixed in a cell (#714)
Bugs Squashed
- fix duplicated sections in the sidebar (#1165), thanks to @seeM
- setting
#| echo
in a cell withshow_doc
causes a Quarto error (#1163) - fix copying of index assets (#1143), thanks to @hamelsmu
- images in index.ipynb causing deployments issues (#1140)
- clean takes forever on notebooks with large output (#1132)
nbdev_update
includes folders starting with_
or.
(e.g..ipynb_checkpoints
) (#1130), thanks to @seeMnbdev_new
defaults bool parameters toFalse
(e.g.put_version_in_init
) (#1129), thanks to @seeMblack_formatting
setting is ignored (#1122), thanks to @jmoraleznbdev_readme()
fails on the second run for the notebook with support files (e.g. Fig image). (#1106)nbdev_new
fails withAttributeError: path_
(#1063)- fix #1041 (#1049), thanks to @seeM
v2.3.7
New Features
- Set recursive
True
by default (#1117), thanks to @seeM exec_doc
supports re-rendering widgets (#1113), thanks to @seeM- If users update widgets with the
exec_doc
directive, the widget "view" is updated (in the cell output), but the old widget "state" is used (in notebook metadata). This refreshes widget state usingipywidgets.Widget.get_manager_state
.
- If users update widgets with the
nbdev_new
pins on major+minor version ofnbdev-template
(#1091)nbdev_proc_nbs
completes all steps to build_proc
for publishing (#1086)nbdev_new
defaultsnbs_path
setting to'nbs'
(#1083)- Since all website files (quarto config, css, images, etc) are in
nbs_path
, the current defaultnbs_path='.'
can clutter the root folder.
- Since all website files (quarto config, css, images, etc) are in
nbdev_new
queriesbranch
from GitHub (#1080)
Bugs Squashed
- fix exporting
patch_to
which is decorated withstaticmethod
(#1100), thanks to @seeM show_doc
errors if a dependency in thenbdev
group has a sub-dependency that isn't installed (#1097)- Running
nbdev_migrate
while upgrading removes nbdev2 compatible directives (#1089) - respect
#|hide
and#|include: false
for showdoc (#1079), thanks to @hamelsmu - Export class to library but hide from documentation (#1076)
nbdev_clean
removes widget state (#1069)- If widget state is present, it means the user had intentionally changed settings in their notebook editor.
v2.3.4
v2.3.3
v2.3.2
v2.3.1
Breaking Changes
_quarto.yml
no longer replaced with automatically generated version (#1059)- This was listed in 2.3.0 but wasn't actually included in the release
Bugs Squashed
- fix
nbdev_update
(#1058), thanks to @seeM- fix bug in
nbdev.maker.update_import
which meant thatnbdev_update
didn't convert relative imports withoutNone
module (e.gfrom . import foo
->from pkg import foo
) - fix
FileNotFoundError
innbdev_update
by passing the correct py module and corresponding notebook paths - fix
nbdev_update
introducing whitespace changes to notebooks
- fix bug in
v2.3.0
Breaking Changes
_quarto.yml
no longer replaced with automatically generated version- You can now customise your
_quarto.yml
file and it will not be overridden by nbdev - This means that
custom_host
andcustom_port
insettings.ini
are no longer supported -- use the standard quarto configuration instead
- You can now customise your
- Parallel ipynb filter (#961)
ipynb-filters
in_quarto.yml
is no longer needed or recommended. Instead, nbdev preprocesses your notebooks in parallel into a folder called_proc
before calling quarto- The new processing system generally results in speedups of around 10x compared to the previous approach
- Deprecate
config_key
in favor ofget_config
(#856), thanks to @seeM
New Features
- Setting
put_version_in_init
to make adding__version__
to__init__.py
optional (#1051), thanks to @MichaelJFishmanBA nbdev_new
support for GitHub Enterprise (#1043), thanks to @seeM- Use
GITHUB_TOKEN
if present fornbdev.release
(#1025) - Support non qmd py rendering scripts (#1014)
- Use penultimate suffix for extension of rendered .py scripts (#1010)
- Print
nbdev_test
cell errors to stderr instead of usinglogging.warning
(#1003) - Make nb meta
display_name
consistent withname
to simplify diffs (#995) - Windows support for clean nb (#989), thanks to @jvanelteren
- Preview support for parallel filter (#976)
- Settings.ini option for choosing preview listen port (#967)
- Authenticate nbdev-template github API call (#940)
- Add
printit
arg tonbdev_filter
so it can be called withfname
and still print to stdout (#931), thanks to @seeM - Run
nbdev_readme
innbdev_new
(#919), thanks to @seeM - Improve config documentation in
read
module (#864), thanks to @seeM - Simplify
jupyter_hooks
configuration (#780), thanks to @seeM
Bugs Squashed
- Class method doclinks target
mod.html#method
instead ofmod.html#class.method
(#1046), thanks to @seeM - "Bad credentials" error in
nbdev_new
if GitHub EnterpriseGH_HOST
andGITHUB_TOKEN
are used (#1038) - Suppress
UserWarning
for unsetGITHUB_TOKEN
innbdev_new
(#1028), thanks to @seeM nbdev.release
usescfg.lib_name
instead ofcfg.repo
(#1024), thanks to @seeMnbdev_test
does not restore the original working directory (#1004)clean_ids
corrupts string outputs (#794), thanks to @seeM
v2.2.10
v2.2.9
New Features
- Experimental: pre-commit hooks (#959), thanks to @seeM
- setup GitHub repo automatically (#955), thanks to @hamelsmu
- Authenticate nbdev-template github API call (#940)
- Support module level docstrings (#473)
Bugs Squashed
show_doc
includes parsed sections from numpy docstrings (#964)AnnAssign
object has no attribute 'targets' (#953)- Exported images not found in docs (#951)
- fix #769 (#946), thanks to @hamelsmu
recursive
in settings.ini ignored (#942)- Wrong source link when using @patch (#939)
- Deploy Action fails with
ModuleNotFoundError: No module named 'https://github'
(#936) - Recursive mode doesn't seem to work when running
nbdev_preview
(#935) - Update All Python Scripts to nbs similar to
nbdev_update_lib
in v1 (#769)
v2.2.7
New Features
- Add
printit
arg tonbdev_filter
so it can be called withfname
and still print to stdout (#931), thanks to @seeM - Run
nbdev_readme
innbdev_new
(#919), thanks to @seeM - In
nbdev_prepare()
auto render README if needed (#913) - Filter keys stored in modidx settings (#903)
- Regression: reintroduce
[source]
link (#692)
Bugs Squashed
- Deploy Action fails with
ModuleNotFoundError: No module named 'https://github'
(#936) - Correct cell index in
nbdev_update
(#934), thanks to @hamelsmu - Handle repo names with dashes and correct index page rendering with file attachments (#930), thanks to @hamelsmu
IPython.display.Image(embed=True)
results in incorrect image reference in GitHub Pages (#924)nbdev_preview
not starting if there is a folder with no notebook in it (#922)- Fix images (#918), thanks to @seeM
nbdev_update
creates a new cell, instead of updating the original code (#775)