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 +)