Skip to content

Commit

Permalink
Remove overly aggresive pinning from requirements (qiskit-community#1605
Browse files Browse the repository at this point in the history
)

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)
  • Loading branch information
mtreinish committed Jun 14, 2021
1 parent 49dab48 commit 1e18b91
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
qiskit-terra>=0.17.0,<0.19.0
qiskit-ignis>=0.6.0,<0.8.0
scipy>=1.4,<=1.6.1
sympy>=1.3,<=1.7.1
numpy>=1.17,<=1.20.1
psutil>=5,<=5.8.0
scikit-learn>=0.20.0,<=0.24.1
qiskit-terra>=0.17.0
qiskit-ignis>=0.6.0
scipy>=1.4
sympy>=1.3
numpy>=1.17
psutil>=5
scikit-learn>=0.20.0
dlx<=1.0.4
docplex<=2.20.204; sys_platform != 'darwin'
docplex==2.15.194; sys_platform == 'darwin'
fastdtw<=0.3.4
setuptools>=40.1.0
h5py<=3.1.0
pandas<=1.2.3
quandl<=3.6.0
yfinance<=0.1.55
retworkx>=0.8.0,<0.10.0
h5py
pandas
quandl
yfinance
retworkx>=0.8.0
dataclasses; python_version < '3.7'

0 comments on commit 1e18b91

Please sign in to comment.