Skip to content

Commit

Permalink
Merge pull request #30 from quadbio/release/v0.1.3
Browse files Browse the repository at this point in the history
Prepare release v0.1.3
  • Loading branch information
Marius1311 authored Feb 7, 2025
2 parents 98c9561 + 3d096a9 commit f528c29
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
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

0 comments on commit f528c29

Please sign in to comment.