Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
change numpy version to 1.15.2 in python install_requires
Browse files Browse the repository at this point in the history
install_requires setting is used for python egg or wheel files to indicate what packages are required during the installation.
Default numpy version on ubuntu 18 is 1.15.2. I think it is safe to change numpy version in mxnet install_requires from 1.15.0 to 1.15.2.
  • Loading branch information
apivovarov authored Oct 1, 2018
1 parent c595f2d commit b35f9a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
else:
from setuptools import setup
from setuptools.extension import Extension
kwargs = {'install_requires': ['numpy<=1.15.0,>=1.8.2', 'requests<2.19.0,>=2.18.4', 'graphviz<0.9.0,>=0.8.1'], 'zip_safe': False}
kwargs = {'install_requires': ['numpy<=1.15.2,>=1.8.2', 'requests<2.19.0,>=2.18.4', 'graphviz<0.9.0,>=0.8.1'], 'zip_safe': False}

with_cython = False
if '--with-cython' in sys.argv:
Expand Down

0 comments on commit b35f9a6

Please sign in to comment.