From 52adb07090f72bda7cea77e3b002e6dda8c64e8e Mon Sep 17 00:00:00 2001 From: moinfar Date: Sat, 27 Dec 2025 09:54:00 +0100 Subject: [PATCH] Add Support for python 3.15 --- pyproject.toml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 6a0d601..a343521 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,7 +14,7 @@ maintainers = [ authors = [ { name = "Amir Ali Moinfar" }, ] -requires-python = ">=3.10,<3.15" +requires-python = ">=3.10,<3.16" classifiers = [ "Intended Audience :: Developers", "Intended Audience :: Science/Research", @@ -28,6 +28,7 @@ classifiers = [ "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", "Programming Language :: Python :: 3.14", + "Programming Language :: Python :: 3.15", "Topic :: Scientific/Engineering :: Artificial Intelligence", "Topic :: Scientific/Engineering :: Bio-Informatics", ] @@ -94,12 +95,12 @@ scripts.clean = "git clean -fdX -- {args:docs}" # Test the lowest and highest supported Python versions with normal deps [[tool.hatch.envs.hatch-test.matrix]] deps = [ "stable" ] -python = [ "3.10", "3.14" ] +python = [ "3.10", "3.15" ] # Test the newest supported Python version also with pre-release deps [[tool.hatch.envs.hatch-test.matrix]] deps = [ "pre" ] -python = [ "3.14" ] +python = [ "3.15" ] [tool.hatch.envs.hatch-test] dependency-groups = [ "dev", "test" ]