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
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,24 @@ and this project adheres to [Semantic Versioning][]. Full commit history is avai

## Version 0.1

### Unreleased

### 0.1.3 (2025-02-07)

#### Added

- Added tests for the single-sample case {pr}`29`.
- Refer to issues and PRs with sphinx {pr}`30`.

#### Removed

- Removed `tenacity` for query retries {pr}`28`.

#### Fixed

- Fixed `_get_annotation_summary_string` for the single-sample case {pr}`29`.
- Fixed the expected cell type marker test by adding additional marker genes {pr}`28`.

### 0.1.2 (2025-01-29)

#### Added
Expand Down
8 changes: 8 additions & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@
"IPython.sphinxext.ipython_console_highlighting",
"sphinxext.opengraph",
*[p.stem for p in (HERE / "extensions").glob("*.py")],
"sphinx.ext.extlinks",
]

# autodoc + napoleon configuration
Expand Down Expand Up @@ -101,6 +102,13 @@
"numpy": ("https://numpy.org/doc/stable/", None),
}

# extlinks config
extlinks = {
"issue": (f"{repository_url}/issues/%s", "#%s"),
"pr": (f"{repository_url}/pull/%s", "#%s"),
"ghuser": ("https://github.com/%s", "@%s"),
}

# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
# This pattern also affects html_static_path and html_extra_path.
Expand Down