-
Notifications
You must be signed in to change notification settings - Fork 297
added classification enums to qp #6346
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
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #6346 +/- ##
=======================================
Coverage 89.78% 89.78%
=======================================
Files 90 90
Lines 23548 23554 +6
Branches 4391 4391
=======================================
+ Hits 21143 21149 +6
Misses 1662 1662
Partials 743 743 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
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.
Lines 201 to 211 in 8fa0cdb
# sphinx.ext.autodoc configuration -------------------------------------------- | |
# https://www.sphinx-doc.org/en/master/usage/extensions/autodoc.html#confval-autodoc_default_options | |
autodoc_default_options = { | |
"members": True, | |
"member-order": "alphabetical", | |
"undoc-members": True, | |
"private-members": False, | |
"special-members": False, | |
"inherited-members": True, | |
"show-inheritance": True, | |
} |
- "inherited-members": True
+ # Enums are most valuable when documented as concisely as possible.
+ "inherited-members": "Enum,IntEnum,ReprEnum,StrEnum",
* upstream/main: Faster dimension lookup for derived coordinates (SciTools#6337) Unpin dask 2 (SciTools#6342) added classification enums to qp (SciTools#6346) Add castable check for valid_range, valid_min, valid_max. (SciTools#6343) Pin Sphinx below 8.2 (SciTools#6344) Add a text feature to quickplot (SciTools#6333)
🚀 Pull Request
Description
Added some convenience enums to quickplot, to supplement #6247.
Which offers more consistency than: