File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -362,7 +362,7 @@ def to_backed(self) -> BackedSparseMatrix:
362
362
mtx = format_class (self .shape , dtype = self .dtype )
363
363
mtx .data = self .group ["data" ]
364
364
mtx .indices = self .group ["indices" ]
365
- mtx .indptr = self .group ["indptr" ]
365
+ mtx .indptr = self .group ["indptr" ][:]
366
366
return mtx
367
367
368
368
def to_memory (self ) -> ss .spmatrix :
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ On `master` :small:`the future`
9
9
- Fixed propagation of import error when importing `write_zarr ` but not all dependencies are installed :pr: `579 ` :smaller: `R Hillje `
10
10
- Fixed issue with `.uns ` sub-dictionaries being referenced by copies :pr: `576 ` :smaller: `I Virshup `
11
11
- Fixed out-of-bounds integer indices not raising :class: `IndexError ` :pr: `630 ` :smaller: `M Klein `
12
+ - Fixed backed `SparseDataset ` indexing with scipy 1.7.2 :pr: `638 ` :smaller: `I Virshup `
12
13
13
14
14
15
0.7.6 :small: `11 April, 2021 `
You can’t perform that action at this time.
0 commit comments