Skip to content
This repository was archived by the owner on Dec 7, 2021. It is now read-only.

Commit b64a594

Browse files
authored
Remove overly aggresive pinning from requirements (#1605) (#1606)
This commit removes overly aggressive pinning from the requirements list. This pinning makes it extremely difficult in practice to actually install the qiskit-aqua with anything that has any shared dependencies like numpy, scipy, etc because the pinning breaks the dependency solver. I assume this pinning was done defensively to try and prevent code from bit rotting during aqua's deprecation period but it has the opposite effect and ends up preventing things from being installed at all. This commit removes all the version caps from the requirements file to fix this. (cherry picked from commit 1885046)
1 parent 49dab48 commit b64a594

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

requirements.txt

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
qiskit-terra>=0.17.0,<0.19.0
2-
qiskit-ignis>=0.6.0,<0.8.0
3-
scipy>=1.4,<=1.6.1
4-
sympy>=1.3,<=1.7.1
5-
numpy>=1.17,<=1.20.1
6-
psutil>=5,<=5.8.0
7-
scikit-learn>=0.20.0,<=0.24.1
1+
qiskit-terra>=0.17.0
2+
qiskit-ignis>=0.6.0
3+
scipy>=1.4
4+
sympy>=1.3
5+
numpy>=1.17
6+
psutil>=5
7+
scikit-learn>=0.20.0
88
dlx<=1.0.4
99
docplex<=2.20.204; sys_platform != 'darwin'
1010
docplex==2.15.194; sys_platform == 'darwin'
1111
fastdtw<=0.3.4
1212
setuptools>=40.1.0
13-
h5py<=3.1.0
14-
pandas<=1.2.3
15-
quandl<=3.6.0
16-
yfinance<=0.1.55
17-
retworkx>=0.8.0,<0.10.0
13+
h5py
14+
pandas
15+
quandl
16+
yfinance
17+
retworkx>=0.8.0
1818
dataclasses; python_version < '3.7'

0 commit comments

Comments
 (0)