1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-01-18 12:06:08 +00:00

setup.py: Update pandas version restrictions

Pandas versions 0.25+ requires Python 3.5.3 as a minimum so ensure that
an older version of pandas is installed for older versions of Python.
This commit is contained in:
Marc Bonnici 2019-08-30 13:52:36 +01:00 committed by setrofim
parent 73b0b0d709
commit d3af4e7515

View File

@ -93,8 +93,8 @@ params = dict(
'devlib>={}'.format(devlib_version), # Interacting with devices
'louie-latest', # callbacks dispatch
'wrapt', # better decorators
'pandas>=0.23.0,<=0.24.2; python_version<"3"', # Data analysis and manipulation
'pandas>=0.23.0; python_version>"3"', # Data analysis and manipulation
'pandas>=0.23.0,<=0.24.2; python_version<"3.5.3"', # Data analysis and manipulation
'pandas>=0.23.0; python_version>="3.5.3"', # Data analysis and manipulation
'future', # Python 2-3 compatiblity
],
dependency_links=['https://github.com/ARM-software/devlib/tarball/master#egg=devlib-{}'.format(devlib_version)],