Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .rstcheck.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
ignore_directives = ifconfig
# ignore the following languages because they require external compilers and
# snippets in this repo depend on external code
ignore_language = c,cpp,c++
ignore_languages = c,cpp,c++
ignore_substitutions = __PART_FAMILY_NAME__,__PART_FAMILY_DEVICE_NAMES__,__PRODUCT_LINE_NAME__,__SDK_BUILD_MACHINE__,__SDK_FULL_NAME__,__SDK_SHORT_NAME__,__SDK_INSTALL_FILE__,__SDK_INSTALL_DIR__,__SDK_DOWNLOAD_URL__,__LINUX_UBUNTU_VERSION_LONG__,__LINUX_UBUNTU_VERSION_SHORT__,__OPTEE_PLATFORM_FLAVOR__,__RTOS_UBUNTU_VERSION_LONG__,__WINDOWS_SUPPORTED_LONG__,__FEATURINGMATRIX__,__SYSFW_CORE_NAME__,__PCIE_BASE_ADDRESS__,__PCIE_DEVICE_ID__
9 changes: 5 additions & 4 deletions conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,11 @@
# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']

# The suffix(es) of source filenames.
# You can specify multiple suffix as a list of string:
# source_suffix = ['.rst', '.md']
source_suffix = '.rst'
# A dictionary mapping the file extensions (suffixes) of source files to their file types. Sphinx
# considers all files files with suffixes in source_suffix to be source files.
source_suffix = {
'.rst': 'restructuredtext'
}

# The encoding of source files.
#source_encoding = 'utf-8-sig'
Expand Down
54 changes: 33 additions & 21 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,25 +1,37 @@
alabaster==0.7.16
Babel==2.14.0
certifi==2024.2.2
charset-normalizer==3.3.2
docutils==0.17.1
idna==3.7
alabaster==1.0.0
annotated-types==0.7.0
babel==2.16.0
certifi==2024.8.30
charset-normalizer==3.4.0
click==8.1.7
docutils==0.21.2
idna==3.10
imagesize==1.4.1
Jinja2==3.1.3
MarkupSafe==2.1.5
packaging==24.0
Pygments==2.11.2
requests==2.31.0
Jinja2==3.1.4
markdown-it-py==3.0.0
MarkupSafe==3.0.2
mdurl==0.1.2
packaging==24.2
pydantic==2.10.2
pydantic_core==2.27.1
Pygments==2.18.0
requests==2.32.3
rich==13.9.4
rstcheck==6.2.4
rstcheck-core==1.2.1
shellingham==1.5.4
snowballstemmer==2.2.0
Sphinx==4.3.2
Sphinx==8.1.3
sphinx-copybutton==0.5.2
sphinx-tabs==3.4.5
sphinx-rtd-theme==1.0.0
sphinxcontrib-applehelp==1.0.2
sphinxcontrib-devhelp==1.0.2
sphinxcontrib-htmlhelp==2.0.0
sphinx-rtd-theme==3.0.2
sphinx-tabs==3.4.7
sphinxcontrib-applehelp==2.0.0
sphinxcontrib-devhelp==2.0.0
sphinxcontrib-htmlhelp==2.1.0
sphinxcontrib-jquery==4.1
sphinxcontrib-jsmath==1.0.1
sphinxcontrib-qthelp==1.0.3
sphinxcontrib-serializinghtml==1.1.5
urllib3==2.2.1
rstcheck==3.3.1
sphinxcontrib-qthelp==2.0.0
sphinxcontrib-serializinghtml==2.0.0
typer==0.14.0
typing_extensions==4.12.2
urllib3==2.2.3
2 changes: 1 addition & 1 deletion scripts/sectinc.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ def get_toctree_entries(app, toctreenodefile):
rststring = rstfilelocation[0]
if rststring:
# Append the found .rst file to the toctreesections list
toctreesections.append(re.sub('\.rst$', '', rststring))
toctreesections.append(re.sub(r'\.rst$', '', rststring))
else:
print("TOC Tree Entry is not a defined .rst file in current directory")

Expand Down
Loading