Skip to content

Commit 748c763

Browse files
committed
chore: Removed unused dependecies for documentation
1 parent 58fcb76 commit 748c763

File tree

3 files changed

+1
-15
lines changed

3 files changed

+1
-15
lines changed

docs/scripts/generate_dependencies_markdown.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,16 @@
99
open("requirements.txt") as _req,
1010
open("requirements.doc.txt") as _doc_req,
1111
open("requirements.test.txt") as _test_req,
12-
open("requirements.extra.txt") as _extra_req,
1312
open("requirements.dev.txt") as _dev_req,
1413
):
1514
content = ["# List of dependencies", ""]
1615

1716
_requirements: list[str] = _req.read().splitlines()
1817
_doc_requirements: list[str] = _doc_req.read().splitlines()
1918
_test_requirements: list[str] = _test_req.read().splitlines()
20-
_extra_requirements: list[str] = _extra_req.read().splitlines()
2119
_dev_requirements: list[str] = _dev_req.read().splitlines()
2220

23-
for _r in [_requirements, _doc_requirements, _extra_requirements, _test_requirements, _dev_requirements]:
21+
for _r in [_requirements, _doc_requirements, _test_requirements, _dev_requirements]:
2422
for _l in _r:
2523
if not _l:
2624
content.append("")

mkdocs.yml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -94,16 +94,6 @@ plugins:
9494
- search:
9595
lang:
9696
- en
97-
- mkdocstrings:
98-
default_handler: python
99-
handlers:
100-
python:
101-
options:
102-
docstring_style: sphinx
103-
line_length: 120
104-
show_root_heading: true
105-
show_source: true
106-
heading_level: 2
10797
- gen-files:
10898
scripts:
10999
# - docs/scripts/generate_references.py

requirements.doc.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,10 @@
22
mkdocs~=1.6.1
33
mkdocs-click~=0.8.1
44
mkdocs-gen-files~=0.5.0
5-
mkdocstrings[python]~=0.28.2
65
mkdocs-awesome-nav~=3.1.2
76
pymdown-extensions~=10.7
87
requirements-parser~=0.11.0
98
mike~=2.0.0
10-
griffe~=1.5.7
119
mkdocs-include-dir-to-nav~=1.2.0
1210
mkdocs-material[imaging]~=9.6.14
1311
mkdocs-table-reader-plugin~=2.0.3

0 commit comments

Comments
 (0)