Skip to content

Commit

Permalink
0.10.9 release (#269)
Browse files Browse the repository at this point in the history
* update release note

* fix docs
  • Loading branch information
Intron7 authored Oct 1, 2024
1 parent e513441 commit 2e2d54f
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/release-notes/0.10.9.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
### 0.10.8 {small}`the future`
### 0.10.9 {small}`2024-10-01`

```{rubric} Features
```
Expand Down
15 changes: 10 additions & 5 deletions src/rapids_singlecell/get/_aggregated.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
from __future__ import annotations

from typing import TYPE_CHECKING, Literal, Union, get_args
from typing import (
TYPE_CHECKING,
Collection,
Iterable,
Literal,
Union,
get_args,
)

import cupy as cp
import numpy as np
Expand All @@ -13,8 +20,6 @@
from rapids_singlecell.preprocessing._utils import _check_gpu_X

if TYPE_CHECKING:
from collections.abc import Collection, Iterable

import pandas as pd
from numpy.typing import NDArray

Expand Down Expand Up @@ -331,8 +336,8 @@ def aggregate(
If `func` only has length 1 or is just an `AggType`, then aggregation data is written to `X`.
Otherwise, it is written to `layers` or `xxxm` as appropriate for the dimensions of the aggregation data.
Params
------
Parameters
----------
adata
:class:`~anndata.AnnData` to be aggregated.
by
Expand Down

0 comments on commit 2e2d54f

Please sign in to comment.