Skip to content

Commit

Permalink
Add ruamel.yaml as requirement
Browse files Browse the repository at this point in the history
Without ruamel.yaml installed, MkDoxy doesn't work.

File ".../MkDoxy/mkdoxy/utils.py", line 5, in <module>
    from ruamel.yaml import YAML
ModuleNotFoundError: No module named 'ruamel'
  • Loading branch information
gladhorn committed Jul 18, 2023
1 parent 735dd1f commit 1544831
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
mkdocs
mkdocs
ruamel.yaml
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def requirements():
'Funding': 'https://github.com/sponsors/jakubandrysek',
},

install_requires=['mkdocs'],
install_requires=['mkdocs', 'ruamel.yaml'],
extras_require={
"dev": [
"mkdocs-material==9.1.18",
Expand Down

0 comments on commit 1544831

Please sign in to comment.