1
0
mirror of https://github.com/ARM-software/devlib.git synced 2025-02-24 21:47:50 +00:00

setup.py: Set maximum package version for python2.7 support

In the latest versions of panadas and numpy python2.7 support has been
dropped therefore restrict the maximum version of these packages.
This commit is contained in:
Marc Bonnici 2019-07-05 11:05:43 +01:00 committed by setrofim
parent ad350c9267
commit f619f1dd07

@ -85,8 +85,10 @@ params = dict(
'wrapt', # Basic for construction of decorator functions
'future', # Python 2-3 compatibility
'enum34;python_version<"3.4"', # Enums for Python < 3.4
'pandas',
'numpy',
'numpy<=1.16.4; python_version<"3"',
'numpy; python_version>="3"',
'pandas<=0.24.2; python_version<"3"',
'pandas; python_version>"3"',
],
extras_require={
'daq': ['daqpower'],