-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[MAINT] use sphinx argparse to automatically render the cli arguments doc #71
Conversation
@@ -35,7 +36,6 @@ | |||
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output | |||
|
|||
html_theme = "sphinx_rtd_theme" | |||
html_static_path = ["_static"] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
was throwing a warning
@@ -75,7 +75,7 @@ The workflow is the same as code contributions, with some minor differences. | |||
1. Install the `[doc]` dependencies. | |||
|
|||
```bash | |||
pip install -e .[doc] | |||
pip install -e '.[doc]' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
recently learned that single quote are required for zsh users (mac users)
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## main #71 +/- ##
==========================================
+ Coverage 91.31% 91.37% +0.05%
==========================================
Files 9 9
Lines 449 452 +3
==========================================
+ Hits 410 413 +3
Misses 39 39
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks a bunch!
closes #45