File tree 2 files changed +26
-0
lines changed
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
11
11
12
12
## Version 0.1
13
13
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
+
14
32
### 0.1.2 (2025-01-29)
15
33
16
34
#### Added
Original file line number Diff line number Diff line change 59
59
"IPython.sphinxext.ipython_console_highlighting" ,
60
60
"sphinxext.opengraph" ,
61
61
* [p .stem for p in (HERE / "extensions" ).glob ("*.py" )],
62
+ "sphinx.ext.extlinks" ,
62
63
]
63
64
64
65
# autodoc + napoleon configuration
101
102
"numpy" : ("https://numpy.org/doc/stable/" , None ),
102
103
}
103
104
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
+
104
112
# List of patterns, relative to source directory, that match files and
105
113
# directories to ignore when looking for source files.
106
114
# This pattern also affects html_static_path and html_extra_path.
You can’t perform that action at this time.
0 commit comments