Skip to content

Commit f0c2f6f

Browse files
committed
stability fixes for docs
Signed-off-by: Andrey Parfenov <[email protected]>
1 parent cc833cf commit f0c2f6f

7 files changed

+23
-17
lines changed

docs/Doxyfile.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -601,7 +601,7 @@ FORCE_LOCAL_INCLUDES = NO
601601
# documentation for inline members.
602602
# The default value is: YES.
603603

604-
INLINE_INFO = YES
604+
INLINE_INFO = NO
605605

606606
# If the SORT_MEMBER_DOCS tag is set to YES then doxygen will sort the
607607
# (detailed) documentation of file and class members alphabetically by member

docs/UserAPI.rst

-6
Original file line numberDiff line numberDiff line change
@@ -63,23 +63,20 @@ BoardShim class
6363
.. doxygenclass:: BoardShim
6464
:members:
6565
:project: BrainFlowCpp
66-
:undoc-members:
6766

6867
DataFilter class
6968
~~~~~~~~~~~~~~~~~~
7069

7170
.. doxygenclass:: DataFilter
7271
:members:
7372
:project: BrainFlowCpp
74-
:undoc-members:
7573

7674
MLModel class
7775
~~~~~~~~~~~~~~~~~~~~~~~~~
7876

7977
.. doxygenclass:: MLModel
8078
:members:
8179
:project: BrainFlowCpp
82-
:undoc-members:
8380

8481
BrainFlow constants
8582
~~~~~~~~~~~~~~~~~~~~~
@@ -94,7 +91,6 @@ Content of Brainflow Package:
9491

9592
.. doxygennamespace:: brainflow
9693
:project: BrainFlowJava
97-
:undoc-members:
9894
:members:
9995
:content-only:
10096

@@ -106,7 +102,6 @@ Content of brainflow namespace:
106102

107103
.. doxygennamespace:: brainflow
108104
:project: BrainFlowCsharp
109-
:undoc-members:
110105
:members:
111106
:content-only:
112107

@@ -134,7 +129,6 @@ A few general rules to keep in mind:
134129

135130
.. mat:automodule:: brainflow
136131
:members:
137-
:undoc-members:
138132
:show-inheritance:
139133

140134

docs/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ def configure_doxyfile(input_dir, output_dir, project):
9191
configure_doxyfile(input_dir, output_dir, 'BrainFlowCsharp')
9292
subprocess.call('doxygen', shell=True)
9393
breathe_projects['BrainFlowCsharp'] = output_dir + '/xml'
94-
# core api, we dont use it right now but maybe later we will docs for developers too
94+
# core api, we dont use it right now but maybe later we will have docs for developers too
9595
input_dir = '../src'
9696
output_dir = 'build-core'
9797
configure_doxyfile(input_dir, output_dir, 'BrainFlowCore')
@@ -142,7 +142,7 @@ def configure_doxyfile(input_dir, output_dir, project):
142142
]
143143
nbsphinx_input_prompt = 'In [%s]:'
144144
nbsphinx_output_prompt = 'Out[%s]:'
145-
nbsphinx_timeout = 60
145+
nbsphinx_timeout = 120
146146
# -- Options for HTML output -------------------------------------------------
147147

148148
# The theme to use for HTML and HTML Help pages. See the documentation for

docs/notebooks/band_power.ipynb

+5-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@
22
"cells": [
33
{
44
"cell_type": "markdown",
5-
"metadata": {},
5+
"metadata": {
6+
"execution": {
7+
"timeout": 300
8+
}
9+
},
610
"source": [
711
"# BrainFlow Band Power Notebook"
812
]

docs/notebooks/brainflow_mne.ipynb

+5-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@
22
"cells": [
33
{
44
"cell_type": "markdown",
5-
"metadata": {},
5+
"metadata": {
6+
"execution": {
7+
"timeout": 300
8+
}
9+
},
610
"source": [
711
"# BrainFlow to MNE Python Notebook"
812
]

docs/notebooks/denoising.ipynb

+5-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@
22
"cells": [
33
{
44
"cell_type": "markdown",
5-
"metadata": {},
5+
"metadata": {
6+
"execution": {
7+
"timeout": 300
8+
}
9+
},
610
"source": [
711
"# Denoising Notebook"
812
]

docs/requirements.txt

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
sphinx==3.1.2
2-
breathe==4.19.2
1+
sphinx==4.0.2
2+
breathe==4.33.1
33
brainflow
44
pandas
5-
mne
5+
mne==1.5.0
66
matplotlib
77
ipykernel
88
nbsphinx
99
pandoc
1010
sphinxcontrib-ghcontributors
1111
Pygments==2.7.4
12-
sphinxcontrib-matlabdomain==0.11.4
12+
sphinxcontrib-matlabdomain==0.19.1
1313
docutils<0.17
1414
sphinx_rtd_theme==0.4.3
15-
jinja2<3.1
15+
jinja2==3.1.2

0 commit comments

Comments
 (0)