From ea06eaa0c67224a7966f12de44657a7f25ce13aa Mon Sep 17 00:00:00 2001 From: Marco Govoni <25028165+mgovoni-devel@users.noreply.github.com> Date: Wed, 1 Oct 2025 11:35:28 +0200 Subject: [PATCH] Update pyproject.toml <=3.12 means that 3.12.x with x>0 would not be allowed. Can we change this requirement to <3.13, so that python 3.12.x with any x would work? Thanks. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index cc8953a7..443c10e3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ description = "Python implementation of the sscha code" authors = [{name = "Lorenzo Monacelli"}] # Put here email readme = "README.md" license = {file = "LICENSE.txt"} -requires-python = ">=3.8,<=3.12" # Updated to specify Python 3.8 to 3.12 +requires-python = ">=3.8,<3.13" # Updated to specify Python 3.8 to 3.12 dependencies = [ "numpy", "ase",