File tree Expand file tree Collapse file tree 2 files changed +26
-0
lines changed
Expand file tree Collapse file tree 2 files changed +26
-0
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,24 @@ and this project adheres to [Semantic Versioning][]. Full commit history is avai
1111
1212## Version 0.1
1313
14+ ### Unreleased
15+
16+ ### 0.1.3 (2025-02-07)
17+
18+ #### Added
19+
20+ - Added tests for the single-sample case {pr}` 29 ` .
21+ - Refer to issues and PRs with sphinx {pr}` 30 ` .
22+
23+ #### Removed
24+
25+ - Removed ` tenacity ` for query retries {pr}` 28 ` .
26+
27+ #### Fixed
28+
29+ - Fixed ` _get_annotation_summary_string ` for the single-sample case {pr}` 29 ` .
30+ - Fixed the expected cell type marker test by adding additional marker genes {pr}` 28 ` .
31+
1432### 0.1.2 (2025-01-29)
1533
1634#### Added
Original file line number Diff line number Diff line change 5959 "IPython.sphinxext.ipython_console_highlighting" ,
6060 "sphinxext.opengraph" ,
6161 * [p .stem for p in (HERE / "extensions" ).glob ("*.py" )],
62+ "sphinx.ext.extlinks" ,
6263]
6364
6465# autodoc + napoleon configuration
101102 "numpy" : ("https://numpy.org/doc/stable/" , None ),
102103}
103104
105+ # extlinks config
106+ extlinks = {
107+ "issue" : (f"{ repository_url } /issues/%s" , "#%s" ),
108+ "pr" : (f"{ repository_url } /pull/%s" , "#%s" ),
109+ "ghuser" : ("https://github.com/%s" , "@%s" ),
110+ }
111+
104112# List of patterns, relative to source directory, that match files and
105113# directories to ignore when looking for source files.
106114# This pattern also affects html_static_path and html_extra_path.
You can’t perform that action at this time.
0 commit comments