@@ -21,7 +21,7 @@ maintainers = [
2121authors = [
2222 { name = " scverse" },
2323]
24- requires-python = " >=3.11 "
24+ requires-python = " >=3.12 "
2525classifiers = [
2626 " Development Status :: 5 - Production/Stable" ,
2727 " Environment :: Console" ,
@@ -31,7 +31,6 @@ classifiers = [
3131 " Operating System :: MacOS :: MacOS X" ,
3232 " Operating System :: POSIX :: Linux" ,
3333 " Programming Language :: Python :: 3 :: Only" ,
34- " Programming Language :: Python :: 3.11" ,
3534 " Programming Language :: Python :: 3.12" ,
3635 " Programming Language :: Python :: 3.13" ,
3736 " Programming Language :: Python :: 3.14" ,
@@ -66,6 +65,7 @@ dependencies = [
6665 " scikit-image>=0.25" ,
6766 # due to https://github.com/scikit-image/scikit-image/issues/6850 breaks rescale ufunc
6867 " scikit-learn>=0.24" ,
68+ " scverse-backends" ,
6969 " spatialdata>=0.7.1" ,
7070 " spatialdata-plot" ,
7171 " statsmodels>=0.12" ,
@@ -142,7 +142,7 @@ version.source = "vcs"
142142[tool .pixi ]
143143workspace.channels = [ " conda-forge" ]
144144workspace.platforms = [ " linux-64" , " osx-arm64" ]
145- dependencies.python = " >=3.11 "
145+ dependencies.python = " >=3.12 "
146146pypi-dependencies.squidpy = { path = " ." , editable = true }
147147tasks.format = " ruff format ."
148148tasks.kernel-install = ' python -m ipykernel install --user --name pixi-dev --display-name "squidpy (dev)"'
@@ -151,12 +151,12 @@ tasks.lint = "ruff check ."
151151tasks.pre-commit = " pre-commit run"
152152tasks.pre-commit-install = " pre-commit install"
153153tasks.test = " pytest -v --color=yes --tb=short --durations=10"
154- feature.py311 .dependencies.python = " 3.11 .*"
154+ feature.py312 .dependencies.python = " 3.12 .*"
155155feature.py313.dependencies.python = " 3.13.*"
156156environments.default = { features = [ " py313" ], solve-group = " py313" }
157- environments.dev-py311 = { features = [ " dev" , " test" , " py311 " ], solve-group = " py311 " }
157+ environments.dev-py312 = { features = [ " dev" , " test" , " py312 " ], solve-group = " py312 " }
158158environments.dev-py313 = { features = [ " dev" , " test" , " py313" ], solve-group = " py313" }
159- environments.docs-py311 = { features = [ " docs" , " py311 " ], solve-group = " py311 " }
159+ environments.docs-py312 = { features = [ " docs" , " py312 " ], solve-group = " py312 " }
160160environments.docs-py313 = { features = [ " docs" , " py313" ], solve-group = " py313" }
161161environments.test-py313 = { features = [ " test" , " py313" ], solve-group = " py313" }
162162
0 commit comments