From ffd0404ac2500c923dc3b77f5f84e96c63ae9314 Mon Sep 17 00:00:00 2001 From: "Kurt A. O'Hearn" <1138669+ohearnk@users.noreply.github.com> Date: Tue, 9 Apr 2024 14:17:39 -0400 Subject: [PATCH] Pin scipy upper version limit (scipy.linalg.tril missing from >1.12.0, needs to be ported over to numpy.tril). --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index a638401..33ce06a 100644 --- a/setup.py +++ b/setup.py @@ -38,7 +38,7 @@ def get_cuda_version(): 'jax_md @ git+https://github.com/cagrikymk/jax-md.git@reaxff_dev#egg=jax_md', 'numba>=0.56', 'numpy', - 'scipy>=1.2.1', + 'scipy>=1.2.1,<=1.12.0', 'tabulate>=0.8.9', 'frozendict', 'tqdm',