From 54e9e779837990a5abd4d92a421e9f2df0540225 Mon Sep 17 00:00:00 2001 From: joharkit <98756257+joharkit@users.noreply.github.com> Date: Tue, 28 Jan 2025 18:54:12 +0100 Subject: [PATCH] Update pyproject.toml to meet poetry conventions in python-poetry ~=3.9 is interpreted as >=3.9<3.10 [2], though it should be >=3.9,<4.0 [2] https://python-poetry.org/docs/dependency-specification/ --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 01cacf52..0d56b739 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ name = "diffrax" version = "0.6.2" description = "GPU+autodiff-capable ODE/SDE/CDE solvers written in JAX." readme = "README.md" -requires-python ="~=3.9" +requires-python =">=3.9,<4.0" license = {file = "LICENSE"} authors = [ {name = "Patrick Kidger", email = "contact@kidger.site"},