Skip to content

Commit

Permalink
Fixed documentation dependencies. Fixed path to XML.
Browse files Browse the repository at this point in the history
  • Loading branch information
Paebbels committed Feb 21, 2024
1 parent 5bc725b commit 16c12b7
Show file tree
Hide file tree
Showing 9 changed files with 4,496 additions and 2,600 deletions.
35 changes: 0 additions & 35 deletions doc/Reference.rst

This file was deleted.

2 changes: 1 addition & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@
report_unittest_testsuites = {
"src": {
"name": f"{project}",
"xml_report": "../report/unit/unittest.xml",
"xml_report": "../report/unit/TestReportSummary.xml",
}
}
report_codecov_packages = {
Expand Down
28 changes: 22 additions & 6 deletions doc/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,12 +1,28 @@
-r ../requirements.txt

pyTooling >= 5.0.0
pyTooling ~= 6.0
colorama >= 0.4.6
ruamel.yaml >= 0.18.5
setuptools >= 69.0.0

# Enforce latest version on ReadTheDocs
sphinx>=5.3.0
sphinx >= 7.2, < 8.0
docutils >= 0.18.0, < 0.19.0

# ReadTheDocs Theme
sphinx_rtd_theme ~= 2.0.0

# Sphinx Extenstions
sphinxcontrib-mermaid>=0.7.1
autoapi>=2.0.1
sphinx_fontawesome>=0.0.6
sphinx_autodoc_typehints>=1.19.5
#sphinxcontrib-actdiag>=0.8.5
sphinxcontrib-mermaid >= 0.9.2
#sphinxcontrib-seqdiag>=0.8.5
#sphinxcontrib-textstyle>=0.2.1
#sphinxcontrib-spelling>=2.2.0
autoapi >= 2.0.1
sphinx_design >= 0.5.0
sphinx-copybutton >= 0.5.2
sphinx_autodoc_typehints >= 1.25.2
# changelog>=0.3.5
sphinx_reports >= 0.5.0

# BuildTheDocs Extensions (mostly patched Sphinx extensions)
2 changes: 1 addition & 1 deletion pyEDAA/Reports/Unittesting/OSVVM.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ class Document:
def __init__(self, yamlReportFile: Path) -> None:
yamlReader = YAML()
self._yamlDocument = yamlReader.load(yamlReportFile)
yamlBuild = self._yamlDocument["Build"]
yamlBuild = self._yamlDocument["BuildInfo"]

self._testsuites = {}

Expand Down
Loading

0 comments on commit 16c12b7

Please sign in to comment.