From c8b5e9c56f0525d85ed8cd2454337cab2c71699d Mon Sep 17 00:00:00 2001 From: Matt Dixon Date: Thu, 5 Dec 2024 17:48:47 -0500 Subject: [PATCH] Update pillow version constraint and adjust scipy, matplotlib, and qiskit dependencies --- requirements.txt | 2 +- setup.py | 9 +++++---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/requirements.txt b/requirements.txt index 0049d3a..18b3481 100644 --- a/requirements.txt +++ b/requirements.txt @@ -8,7 +8,7 @@ mpmath==1.3.0 numpy>=1.24.0,<1.25.0 packaging==24.2 pbr==6.1.0 -pillow==11.0.0 +pillow>=9.0.0,<10.0.0 pyparsing==3.2.0 python-dateutil==2.9.0.post0 qiskit==1.3.0 diff --git a/setup.py b/setup.py index 5e2a108..c8a7550 100644 --- a/setup.py +++ b/setup.py @@ -20,8 +20,9 @@ install_requires=[ # List of dependencies "numpy>=1.24.0,<1.25.0", - "scipy>=1.13.1", - "matplotlib>=3.7.0,<3.8.0", - "qiskit>=1.3.0", + "scipy>=1.7.0,<1.8.0", + "matplotlib>=3.5.0,<3.6.0", + "qiskit>=0.34.0,<0.35.0", + "pillow>=9.0.0,<10.0.0", ], -) \ No newline at end of file +)