mirror of
https://github.com/ARM-software/workload-automation.git
synced 2025-01-31 02:01:16 +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:
parent
73b0b0d709
commit
d3af4e7515
4
setup.py
4
setup.py
@ -93,8 +93,8 @@ params = dict(
|
|||||||
'devlib>={}'.format(devlib_version), # Interacting with devices
|
'devlib>={}'.format(devlib_version), # Interacting with devices
|
||||||
'louie-latest', # callbacks dispatch
|
'louie-latest', # callbacks dispatch
|
||||||
'wrapt', # better decorators
|
'wrapt', # better decorators
|
||||||
'pandas>=0.23.0,<=0.24.2; 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"', # Data analysis and manipulation
|
'pandas>=0.23.0; python_version>="3.5.3"', # Data analysis and manipulation
|
||||||
'future', # Python 2-3 compatiblity
|
'future', # Python 2-3 compatiblity
|
||||||
],
|
],
|
||||||
dependency_links=['https://github.com/ARM-software/devlib/tarball/master#egg=devlib-{}'.format(devlib_version)],
|
dependency_links=['https://github.com/ARM-software/devlib/tarball/master#egg=devlib-{}'.format(devlib_version)],
|
||||||
|
Loading…
x
Reference in New Issue
Block a user