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 .mypy.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[mypy]
python_version = 3.10
python_version = 3.12

ignore_errors = False
warn_redundant_casts = True
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ For more information on the `spatialdata-plot` library, please refer to the [doc

## Installation

You need to have Python 3.10 or newer installed on your system. If you don't have
You need to have Python 3.12 or newer installed on your system. If you don't have
Python installed, we recommend installing [Mambaforge](https://github.com/conda-forge/miniforge#mambaforge).

There are several alternative options to install spatialdata-plot:
Expand Down
17 changes: 8 additions & 9 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,9 @@ maintainers = [
authors = [
{ name = "scverse" },
]
requires-python = ">=3.11"
requires-python = ">=3.12"
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
Expand Down Expand Up @@ -82,7 +81,7 @@ envs.docs.scripts.open = "python -m webbrowser -t docs/_build/html/index.html"
envs.docs.scripts.clean = "git clean -fdX -- {args:docs}"
envs.hatch-test.dependency-groups = [ "test" ]
envs.hatch-test.matrix = [
{ deps = [ "stable" ], python = [ "3.11", "3.14" ] },
{ deps = [ "stable" ], python = [ "3.12", "3.14" ] },
{ deps = [ "pre" ], python = [ "3.14" ] }
]
envs.hatch-test.overrides.matrix.deps.env-vars = [
Expand All @@ -100,7 +99,7 @@ channels = [ "conda-forge" ]
platforms = [ "linux-64", "osx-arm64" ]

[tool.pixi.dependencies]
python = ">=3.11"
python = ">=3.12"

[tool.pixi.pypi-dependencies]
spatialdata-plot = { path = ".", editable = true }
Expand All @@ -122,20 +121,20 @@ pre-commit-run = "pre-commit run --all-files"
test = "pytest -v --color=yes --tb=short --durations=10"

# for gh-actions
[tool.pixi.feature.py311.dependencies]
python = "3.11.*"
[tool.pixi.feature.py312.dependencies]
python = "3.12.*"

[tool.pixi.feature.py313.dependencies]
python = "3.13.*"

[tool.pixi.environments]
# 3.13 lane
default = { features = [ "py313" ], solve-group = "py313" }
# 3.11 lane (for gh-actions)
dev-py311 = { features = [ "dev", "test", "py311" ], solve-group = "py311" }
# 3.12 lane (for gh-actions)
dev-py312 = { features = [ "dev", "test", "py312" ], solve-group = "py312" }
dev-py313 = { features = [ "dev", "test", "py313" ], solve-group = "py313" }
dev-interactive-py313 = { features = [ "dev", "test", "interactive", "py313" ], solve-group = "py313" }
docs-py311 = { features = [ "doc", "py311" ], solve-group = "py311" }
docs-py312 = { features = [ "doc", "py312" ], solve-group = "py312" }
docs-py313 = { features = [ "doc", "py313" ], solve-group = "py313" }
test-py313 = { features = [ "test", "py313" ], solve-group = "py313" }

Expand Down
Loading