From dd815b9dd1c6ea88602f7dc1fc8e161ccba82bc0 Mon Sep 17 00:00:00 2001 From: deeenes Date: Tue, 4 Jun 2024 12:06:29 +0200 Subject: [PATCH] set required Python to `>=3.8`: the `<3.12` causes a broad incompatibility issue in package management --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 37e3d3b..74c9328 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,7 +20,7 @@ homepage = "https://liana-py.readthedocs.io" include = ["LICENSE"] [tool.poetry.dependencies] -python = ">=3.8 <3.12" +python = "^3.8" anndata = ">=0.7.4" mudata = "*" scanpy = ">=1.8.0"