From 969068e0f6da86a6f76d312544d9601e841bf808 Mon Sep 17 00:00:00 2001 From: Lukas Heumos Date: Sat, 13 Dec 2025 19:42:40 +0100 Subject: [PATCH 1/2] Support Python 3.14 Signed-off-by: Lukas Heumos --- .github/workflows/test_tutorials.yml | 2 +- pyproject.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test_tutorials.yml b/.github/workflows/test_tutorials.yml index cae06bc7..f10a2b51 100644 --- a/.github/workflows/test_tutorials.yml +++ b/.github/workflows/test_tutorials.yml @@ -67,7 +67,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v6 with: - python-version: "3.13" + python-version: "3.14" - name: Install R uses: r-lib/actions/setup-r@v2 with: diff --git a/pyproject.toml b/pyproject.toml index be0498d9..2911edfa 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ name = "pertpy" version = "1.0.4" description = "Perturbation Analysis in the scverse ecosystem." readme = "README.md" -requires-python = ">=3.12,<3.14" +requires-python = ">=3.12,<3.15" license = {file = "LICENSE"} authors = [ {name = "Lukas Heumos"}, @@ -128,7 +128,7 @@ allow-direct-references = true features = [ "test", "tcoda", "de", "scgen" ] [[tool.hatch.envs.hatch-test.matrix]] -python = [ "3.12", "3.13" ] +python = [ "3.12", "3.14" ] [tool.coverage.run] source = ["pertpy"] From 2ef495a442da8c59cbdd326eb31affec00dcc5ec Mon Sep 17 00:00:00 2001 From: Lukas Heumos Date: Mon, 15 Dec 2025 17:57:01 +0100 Subject: [PATCH 2/2] Support Python 3.14 Signed-off-by: Lukas Heumos --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 2911edfa..b7ec8b65 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -42,6 +42,7 @@ classifiers = [ "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", "Topic :: Scientific/Engineering :: Bio-Informatics", "Topic :: Scientific/Engineering :: Visualization", ]