From f0e341e769be3f2f33ea60b46654b61960242b2b Mon Sep 17 00:00:00 2001 From: Daniel Weindl Date: Mon, 24 Jun 2024 19:20:41 +0200 Subject: [PATCH] Require sympy>=1.12.1 for numpy>=2.0 compatibility So far, sympy was restricted to 1.11 via pysb, but sympy 1.11 is incompatible with numpy>=2.0 --- python/sdist/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/sdist/pyproject.toml b/python/sdist/pyproject.toml index f93d0c7e1b..e24bf6811a 100644 --- a/python/sdist/pyproject.toml +++ b/python/sdist/pyproject.toml @@ -16,7 +16,7 @@ description = "Advanced multi-language Interface to CVODES and IDAS" requires-python = ">=3.10" dependencies = [ "cmake-build-extension==0.6.0", - "sympy>=1.9", + "sympy>=1.12.1", "numpy>=1.19.3; python_version=='3.9'", "numpy>=1.21.4; python_version>='3.10'", "numpy>=1.23.2; python_version=='3.11'",