Skip to content

Commit

Permalink
stability fixes for docs
Browse files Browse the repository at this point in the history
Signed-off-by: Andrey Parfenov <a1994ndrey@gmail.com>
  • Loading branch information
Andrey1994 committed Dec 16, 2023
1 parent cc833cf commit f0c2f6f
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 17 deletions.
2 changes: 1 addition & 1 deletion docs/Doxyfile.in
Original file line number Diff line number Diff line change
Expand Up @@ -601,7 +601,7 @@ FORCE_LOCAL_INCLUDES = NO
# documentation for inline members.
# The default value is: YES.

INLINE_INFO = YES
INLINE_INFO = NO

# If the SORT_MEMBER_DOCS tag is set to YES then doxygen will sort the
# (detailed) documentation of file and class members alphabetically by member
Expand Down
6 changes: 0 additions & 6 deletions docs/UserAPI.rst
Original file line number Diff line number Diff line change
Expand Up @@ -63,23 +63,20 @@ BoardShim class
.. doxygenclass:: BoardShim
:members:
:project: BrainFlowCpp
:undoc-members:

DataFilter class
~~~~~~~~~~~~~~~~~~

.. doxygenclass:: DataFilter
:members:
:project: BrainFlowCpp
:undoc-members:

MLModel class
~~~~~~~~~~~~~~~~~~~~~~~~~

.. doxygenclass:: MLModel
:members:
:project: BrainFlowCpp
:undoc-members:

BrainFlow constants
~~~~~~~~~~~~~~~~~~~~~
Expand All @@ -94,7 +91,6 @@ Content of Brainflow Package:

.. doxygennamespace:: brainflow
:project: BrainFlowJava
:undoc-members:
:members:
:content-only:

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

.. doxygennamespace:: brainflow
:project: BrainFlowCsharp
:undoc-members:
:members:
:content-only:

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

.. mat:automodule:: brainflow
:members:
:undoc-members:
:show-inheritance:


Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def configure_doxyfile(input_dir, output_dir, project):
configure_doxyfile(input_dir, output_dir, 'BrainFlowCsharp')
subprocess.call('doxygen', shell=True)
breathe_projects['BrainFlowCsharp'] = output_dir + '/xml'
# core api, we dont use it right now but maybe later we will docs for developers too
# core api, we dont use it right now but maybe later we will have docs for developers too
input_dir = '../src'
output_dir = 'build-core'
configure_doxyfile(input_dir, output_dir, 'BrainFlowCore')
Expand Down Expand Up @@ -142,7 +142,7 @@ def configure_doxyfile(input_dir, output_dir, project):
]
nbsphinx_input_prompt = 'In [%s]:'
nbsphinx_output_prompt = 'Out[%s]:'
nbsphinx_timeout = 60
nbsphinx_timeout = 120
# -- Options for HTML output -------------------------------------------------

# The theme to use for HTML and HTML Help pages. See the documentation for
Expand Down
6 changes: 5 additions & 1 deletion docs/notebooks/band_power.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"metadata": {
"execution": {
"timeout": 300
}
},
"source": [
"# BrainFlow Band Power Notebook"
]
Expand Down
6 changes: 5 additions & 1 deletion docs/notebooks/brainflow_mne.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"metadata": {
"execution": {
"timeout": 300
}
},
"source": [
"# BrainFlow to MNE Python Notebook"
]
Expand Down
6 changes: 5 additions & 1 deletion docs/notebooks/denoising.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"metadata": {
"execution": {
"timeout": 300
}
},
"source": [
"# Denoising Notebook"
]
Expand Down
10 changes: 5 additions & 5 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
sphinx==3.1.2
breathe==4.19.2
sphinx==4.0.2
breathe==4.33.1
brainflow
pandas
mne
mne==1.5.0
matplotlib
ipykernel
nbsphinx
pandoc
sphinxcontrib-ghcontributors
Pygments==2.7.4
sphinxcontrib-matlabdomain==0.11.4
sphinxcontrib-matlabdomain==0.19.1
docutils<0.17
sphinx_rtd_theme==0.4.3
jinja2<3.1
jinja2==3.1.2

0 comments on commit f0c2f6f

Please sign in to comment.