JakubAndrysek / MkDoxy

📖 Automatically generates API documentation for your project based on Doxygen comments and code snippets in your markdown files.
https://mkdoxy.kubaandrysek.cz/
MIT License
60 stars 16 forks source link

Add ruamel.yaml as requirement #72

Closed gladhorn closed 11 months ago

gladhorn commented 11 months ago

Without ruamel.yaml installed, MkDoxy doesn't work.

File ".../MkDoxy/mkdoxy/utils.py", line 5, in from ruamel.yaml import YAML ModuleNotFoundError: No module named 'ruamel'

gladhorn commented 11 months ago

I'm not sure what's best, should this be versioned or not? In any case, nothing works for me without the yaml package.

tasansal commented 11 months ago

This is a duplicate of #71

The consensus was to use PyYAML instead and drop ruamel.yaml dependency.

JakubAndrysek commented 11 months ago

I have merged this PR with ruamel.yaml for successful work of this plugin. If anyone adds PR with better PyYAML I will merge it to the master.