Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

add minimum version number for numba support #409

Merged
merged 3 commits into from
Jun 1, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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',
]
)