Skip to content

Commit

Permalink
Enforce versions of mudata, anndata and numpy compatible for python<=…
Browse files Browse the repository at this point in the history
…3.9 (#47)

Update CHANGELOG as well
  • Loading branch information
jkanche authored Oct 3, 2024
1 parent 77b95b7 commit 8139afe
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 5 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Changelog

## Version 0.4.2 - 0.4.7
## Version 0.4.7

- Fix package version issues to support Python<=3.9. Mostly related to how anndata dependencies are versioned in the MuData package discussed [here](https://github.com/scverse/mudata/issues/82).
- The package now enforces the versions of mudata, anndata and numpy that are compatible with each other.

## Version 0.4.2 - 0.4.6

- Fix issue coercing `SummarizedExperiments` to `AnnData` objects and vice-versa.
- Handling coercions when matrices are delayed arrays or backed (for `AnnData`).
Expand Down
16 changes: 12 additions & 4 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -60,22 +60,30 @@ exclude =
# Add here additional requirements for extra features, to install with:
# `pip install SingleCellExperiment[PDF]` like:
optional =
anndata
anndata==0.9.2; python_version<="3.9"
anndata>0.9.2; python_version>"3.9"
h5py
mudata
mudata==0.2.3; python_version<="3.9"
mudata>0.2.3; python_version>"3.9"
delayedarray
hdf5array
numpy==1.24.4; python_version<="3.9"
numpy>1.24.4; python_version>"3.9"

# Add here test requirements (semicolon/line-separated)
testing =
setuptools
pytest
pytest-cov
anndata
anndata==0.9.2; python_version<="3.9"
anndata>0.9.2; python_version>"3.9"
h5py
mudata
mudata==0.2.3; python_version<="3.9"
mudata>0.2.3; python_version>"3.9"
delayedarray
hdf5array
numpy==1.24.4; python_version<="3.9"
numpy>1.24.4; python_version>"3.9"

[options.entry_points]
# Add here console scripts like:
Expand Down

0 comments on commit 8139afe

Please sign in to comment.