Skip to content

Commit fc14913

Browse files
authored
Merge pull request #1117 from seeM/recursive-default
recursive defaults to `False` which excludes images and other sub-directories
2 parents aa9c1d7 + 20251cf commit fc14913

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

nbdev/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def _apply_defaults(
5454
min_python='3.7', # Minimum Python version PyPI classifier
5555
audience='Developers', # Intended audience PyPI classifier
5656
language='English', # Language PyPI classifier
57-
recursive:bool_arg=False, # Include subfolders in notebook globs?
57+
recursive:bool_arg=True, # Include subfolders in notebook globs?
5858
black_formatting:bool_arg=False, # Format libraries with black?
5959
readme_nb='index.ipynb', # Notebook to export as repo readme
6060
title='%(lib_name)s', # Quarto website title

nbs/api/config.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@
149149
" min_python='3.7', # Minimum Python version PyPI classifier\n",
150150
" audience='Developers', # Intended audience PyPI classifier\n",
151151
" language='English', # Language PyPI classifier\n",
152-
" recursive:bool_arg=False, # Include subfolders in notebook globs?\n",
152+
" recursive:bool_arg=True, # Include subfolders in notebook globs?\n",
153153
" black_formatting:bool_arg=False, # Format libraries with black?\n",
154154
" readme_nb='index.ipynb', # Notebook to export as repo readme\n",
155155
" title='%(lib_name)s', # Quarto website title\n",

0 commit comments

Comments
 (0)