From 196224a855d69c61a8411a09ba24d1b3db716aa5 Mon Sep 17 00:00:00 2001 From: Jeroen Van Goey Date: Mon, 1 Jun 2026 11:45:27 +0200 Subject: [PATCH] Allow Python 3.14 Bumps the requires-python upper bound from <3.14 to <3.15. chemap's dependencies (numba, llvmlite, scipy, rdkit, scikit-fingerprints, etc.) all ship Python 3.14 wheels, so the cap looks stale rather than a real constraint. This unblocks matchms/matchms#901, which adds Python 3.14 support to matchms on the development branch. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index dda2572..1b5b4c5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ authors = [ ] license = "MIT" readme = "README.md" -requires-python = ">=3.11,<3.14" +requires-python = ">=3.11,<3.15" classifiers = [ "Programming Language :: Python :: 3", "Operating System :: OS Independent",