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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ __pycache__/
*.egg-info/
.pytest_cache/
.codex_deps/
.claude/
tmp_*.log
build/
dist/
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<a href="https://anaconda.org/conda-forge/pyxenium"><img src="https://img.shields.io/conda/vn/conda-forge/pyxenium.svg" alt="Conda version"></a>
<a href="https://pyxenium.readthedocs.io/en/latest/"><img src="https://readthedocs.org/projects/pyxenium/badge/?version=latest" alt="Read the Docs"></a>
<a href="https://github.com/hutaobo/pyXenium/actions/workflows/ci.yml"><img src="https://github.com/hutaobo/pyXenium/actions/workflows/ci.yml/badge.svg?branch=main" alt="CI"></a>
<a href="https://pypi.org/project/pyXenium/"><img src="https://img.shields.io/pypi/pyversions/pyXenium.svg" alt="Python versions"></a>
<a href="https://pypi.org/project/pyXenium/"><img src="https://img.shields.io/badge/python-3.11%20%7C%203.12%20%7C%203.13-blue.svg" alt="Python versions"></a>
<a href="https://github.com/hutaobo/pyXenium/blob/main/LICENSE"><img src="https://img.shields.io/badge/license-AGPL--3.0-0a7f5a.svg" alt="License"></a>
</p>

Expand Down Expand Up @@ -39,7 +39,7 @@ and run separately; pyXenium does not vendor them or add them as core runtime de
- Conda package: [conda-forge](https://anaconda.org/conda-forge/pyxenium)
- Documentation site: [pyxenium.readthedocs.io](https://pyxenium.readthedocs.io/en/latest/)
- Canonical build status: [GitHub Actions CI](https://github.com/hutaobo/pyXenium/actions/workflows/ci.yml)
- Supported Python: `>=3.8`
- Supported Python: `>=3.11`
- License: [GNU AGPL v3.0 only](https://github.com/hutaobo/pyXenium/blob/main/LICENSE)
- Maintained by: `SPATHO AB`

Expand Down Expand Up @@ -69,7 +69,7 @@ For documentation work:
pip install -e ".[docs]"
```

For the optional SpatialPerturb Bridge runtime on Python 3.9+:
For the optional SpatialPerturb Bridge runtime on Python 3.11+:

```bash
pip install -e ".[perturb]"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ pyxenium = "pyXenium.__main__:main"

[project.optional-dependencies]
perturb = [
"SpatialPerturb>=0.3; python_version >= '3.9'",
"SpatialPerturb>=0.3; python_version >= '3.11'",
]

lazyslide = [
Expand Down
2 changes: 1 addition & 1 deletion tests/test_gmi_module.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ def test_gmi_docs_and_package_data_are_canonical():
api_gmi = (repo_root / "docs" / "api" / "gmi.md").read_text(encoding="utf-8")
pyproject = (repo_root / "pyproject.toml").read_text(encoding="utf-8")

assert "nine feature areas" in readme
assert "nine major sections" in readme
assert "gmi" in api_index
assert "pyXenium.gmi" in api_gmi
assert "_vendor/Gmi/R/*" in pyproject
Expand Down
Loading