Skip to content

Commit

Permalink
add minimum version number for numba support (#409)
Browse files Browse the repository at this point in the history
* add minimum version number for numba support

* minor fix

* list other dependencies required
  • Loading branch information
mmcky committed Jun 1, 2018
1 parent 35f41b1 commit 5fae02f
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,5 +111,11 @@ def write_version_py(filename=None):
author_email='john.stachurski@gmail.com',
url='https://github.com/QuantEcon/QuantEcon.py', # URL to the repo
download_url='https://github.com/QuantEcon/QuantEcon.py/tarball/' + VERSION,
keywords=['quantitative', 'economics']
keywords=['quantitative', 'economics'],
install_requires=[
'numba>=0.36.2',
'numpy',
'scipy',
'sympy',
]
)

0 comments on commit 5fae02f

Please sign in to comment.