Skip to content

Commit baf948d

Browse files
fix: Constrain anndata to <0.10.0 for squidpy 1.2.x compatibility
Squidpy 1.2.x requires older anndata internals (SparseCSCView) that were removed in newer versions. Constraining anndata to <0.10.0 ensures compatibility with squidpy 1.2.x. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 772cb02 commit baf948d

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ dependencies = [
2020

2121
# Single-cell analysis core
2222
"scanpy>=1.9.0,<2.0",
23-
"anndata>=0.8.0,<1.0",
23+
# Pin anndata to be compatible with squidpy 1.2.x
24+
"anndata>=0.8.0,<0.10.0",
2425

2526
# Version constraint to handle jinja2 conflict with pygpcca
2627
"jinja2>=3.0.0",

0 commit comments

Comments
 (0)