Skip to content

Commit

Permalink
Merge pull request #325 from tataratat/cu-update-documentation
Browse files Browse the repository at this point in the history
More Docs
  • Loading branch information
j042 authored Dec 14, 2023
2 parents 3bfe24b + c397584 commit ee7f79b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
1 change: 1 addition & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ precommit run -a
## Local documentation build
```bash
pip install -r docs/requirements.txt
python3 docs/source/handle_markdown.py
sphinx-build -b html docs/source docs/build -E -j auto
# `-E` to ignore existing files, -j auto for parallel build (or specify number
# of processes) you can now open `docs/build/index.html` with your browser
Expand Down
8 changes: 3 additions & 5 deletions docs/source/_templates/autosummary/class.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,9 @@
.. autosummary::
:toctree:
{% for item in methods %}
{% if item not in skipmethods %}
{% if item not in inherited_members %}
{{ name }}.{{ item }}
{% endif %}
{% endif %}
{% if item not in skipmethods %}
{{ name }}.{{ item }}
{% endif %}
{%- endfor %}
{% endif %}
{% endblock %}
Expand Down

0 comments on commit ee7f79b

Please sign in to comment.