From 7c06eef257f5cee6eb2a2a0eff360ea089019403 Mon Sep 17 00:00:00 2001 From: Jim Garrison Date: Mon, 26 Jun 2023 14:52:18 -0400 Subject: [PATCH] Add explicit dependency on rustworkx and scipy (#289) * Add explicit dependency on rustworkx * Add scipy as well, and pin it from above * Bump to a scipy version compatible with pyscf --- pyproject.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 3db6a0132..4cfd6cc1d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -27,6 +27,10 @@ requires-python = ">=3.8" dependencies = [ "numpy>=1.23.0", + # scipy is currently bounded from above because scipy 1.11 removed the + # `sym_pos` kwarg from `scipy.linalg.solve`, but pyscf has not yet been updated. + "scipy>=1.5.2,<1.11", + "rustworkx>=0.12.0", "qiskit-aer>=0.12.0", "qiskit-terra>=0.24.0", "qiskit-nature>=0.6.0",