Skip to content

Commit 7fddb82

Browse files
committed
fix docs datasets download
1 parent fd89a43 commit 7fddb82

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ __pycache__/
2020
docs/_build
2121
!docs/api/.md
2222
docs/**/generated
23+
docs/_static/datasets_data.js
2324

2425
# IDEs
2526
/.idea/

docs/conf.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212

1313
HERE = Path(__file__).parent
1414
sys.path.insert(0, str(HERE / "extensions"))
15+
sys.path.insert(0, str(HERE / "tutorials" / "notebooks" / "extensions"))
1516

1617

1718
# -- Project information -----------------------------------------------------
@@ -57,6 +58,7 @@
5758
"IPython.sphinxext.ipython_console_highlighting",
5859
"sphinx_design",
5960
*[p.stem for p in (HERE / "extensions").glob("*.py")],
61+
*[p.stem for p in (HERE / "tutorials" / "notebooks" / "extensions").glob("*.py")],
6062
]
6163

6264
autodoc_default_options = {

0 commit comments

Comments
 (0)