Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
python-version: ["3.11", "3.12", "3.13"]

steps:
- uses: actions/checkout@v4
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

### Fixed
- Retrieve `mode=multimodal` when saving the model and re-loading the model after H&E training (#24)
- Fix tests for recent AnnData versions only supporting CSR/CSC sparse matrices

## [1.0.0] - 2025-08-09

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Check [Novae's documentation](https://mics-lab.github.io/novae/) to get started.

## Installation

`novae` can be installed from `PyPI` on all OS, for any Python version from `3.10` to `3.12` (included).
`novae` can be installed from `PyPI` on all OS, for any Python version `>=3.11` and `<3.14` (3.14 support coming soon).

```
pip install novae
Expand Down
2 changes: 1 addition & 1 deletion docker/novae/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.10-slim
FROM python:3.12-slim

ARG NOVAE_VERSION

Expand Down
2 changes: 1 addition & 1 deletion docs/getting_started.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Installation

Novae can be installed on every OS and for any Python version from `3.10` to `3.12` (included).
Novae can be installed on every OS and for any Python version `>=3.11` and `<3.14` (3.14 support coming soon).

!!! note "Advice (optional)"

Expand Down
8 changes: 4 additions & 4 deletions novae/data/_load/_toy.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,10 +118,10 @@ def toy_dataset(

def _drop_neighbors(adata: AnnData, index: int):
for key in ["spatial_connectivities", "spatial_distances"]:
adata.obsp[key] = adata.obsp[key].tolil()
adata.obsp[key][index] = 0
adata.obsp[key][:, index] = 0
adata.obsp[key] = adata.obsp[key].tocsr()
connectivities = adata.obsp[key].tolil()
connectivities[index] = 0
connectivities[:, index] = 0
adata.obsp[key] = connectivities.tocsr()
adata.obsp[key].eliminate_zeros()


Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "novae"
version = "1.0.0"
description = "Graph-based foundation model for spatial transcriptomics data"
authors = [{ name = "Quentin Blampey", email = "[email protected]" }]
requires-python = ">=3.10,<3.13"
requires-python = ">=3.11"
readme = "README.md"
license = "BSD-3-Clause"
classifiers = [
Expand Down
4,757 changes: 2,655 additions & 2,102 deletions uv.lock

Large diffs are not rendered by default.

Loading