Skip to content

Commit

Permalink
Bump minimum required version of numpy (#594)
Browse files Browse the repository at this point in the history
It appears that the newly added pulse simulator has an implicit
requirement on having a newer version of numpy installed. We should
encode this minimum in the aer package requirements so people don't
accidently install aer with a version of numpy too old to work.

Fixes #592
  • Loading branch information
mtreinish authored Feb 6, 2020
1 parent 83b2c72 commit 12f97c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import setuptools

requirements = [
'numpy>=1.13',
'numpy>=1.16.3',
'scipy>=1.0',
'cython>=0.27.1',
'pybind11>=2.4' # This isn't really an install requirement,
Expand Down

0 comments on commit 12f97c8

Please sign in to comment.