Skip to content

Commit

Permalink
Compatibility with NumPy 2.0 (#26)
Browse files Browse the repository at this point in the history
Update changelog as well
  • Loading branch information
jkanche authored Jun 27, 2024
1 parent bde73e3 commit b70082f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## Version 0.3.0

Compatibility with NumPy 2.0

## Version 0.2.0

Migrate references to the `celldex` package.

## Version 0.1.1

- Support `SummarizedExperiment` inputs consistently in all functions.
Expand Down
2 changes: 1 addition & 1 deletion tests/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def test_clean_matrix():
assert (ptr.column(4) == out[:, 4]).all()

tmp = np.copy(out)
tmp[0, 5] = np.NaN
tmp[0, 5] = np.nan
ptr, feats = _clean_matrix(
tmp, features, assay_type=None, check_missing=True, num_threads=1
)
Expand Down

0 comments on commit b70082f

Please sign in to comment.