Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ all releases are available on `Anaconda.org <https://anaconda.org/pytask/pytask>
- :gh:`17` changes the interface to subcommands, adds ``"-c/--config"`` option to pass a
path to a configuration file and adds ``pytask clean``, a command to clean your
project.
- :gh:`20` fixes copying code examples in the documentation.


0.0.5 - 2020-08-12
Expand Down
5 changes: 3 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,13 @@

# -- Extensions configuration ----------------------------------------------------------

# Configuration for autodoc
# Configuration for autodoc.
autosummary_generate = True
add_module_names = False
autodoc_mock_imports = ["attr", "click", "networkx", "pluggy", "pony"]

copybutton_prompt_text = r"\\$ |>>> "
# Remove prefixed $ for bash, >>> for Python prompts, and In [1]: for IPython prompts.
copybutton_prompt_text = r"\$ |>>> |In \[\d\]: "
copybutton_prompt_is_regexp = True

extlinks = {
Expand Down