File tree Expand file tree Collapse file tree 5 files changed +251
-3
lines changed Expand file tree Collapse file tree 5 files changed +251
-3
lines changed Original file line number Diff line number Diff line change 1
1
sphinx == 4.2.0
2
- sphinx-readable-theme == 1.3.0
2
+ sphinx-readable-theme == 1.3.0
3
+ myst_nb == 0.13.1
Original file line number Diff line number Diff line change 36
36
# ones.
37
37
extensions = [
38
38
'sphinx.ext.autodoc' ,
39
- 'sphinx.ext.napoleon'
39
+ 'sphinx.ext.napoleon' ,
40
+ 'myst_nb'
40
41
]
41
42
43
+ jupyter_execute_notebooks = "off"
44
+
42
45
napoleon_numpy_docstring = True
43
46
44
47
# Add any paths that contain templates here, relative to this directory.
Original file line number Diff line number Diff line change @@ -48,6 +48,7 @@ Contents
48
48
:maxdepth: 1
49
49
50
50
tutorials.rst
51
+ pydatastructs_sphinx_graphs
51
52
contributing.rst
52
53
authors.rst
53
54
pydatastructs/pydatastructs.rst
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ Tutorials
4
4
We provide the following tutorials to show how ``pydatastructs ``
5
5
APIs can help in solving complicated data structures and algorithms
6
6
problems easily. For now the problems are abstract. However, we plan
7
- to add some examples showing usage of ``pydatastructs `` on real world
7
+ to add some more examples showing usage of ``pydatastructs `` on real world
8
8
data sets such as `Stanford Large Network Dataset Collection <https://snap.stanford.edu/data/ >`_
9
9
and `Urban Dictionary Words And Definitions <https://www.kaggle.com/therohk/urban-dictionary-words-dataset >`_.
10
10
If you are interested in playing around with the above datasets using our API,
You can’t perform that action at this time.
0 commit comments