1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-02-20 20:09:11 +00:00

Promote pandas to a mandatory dependency.

Pandas is already widely used in WA and devlib for fast numerical table
manipulation in various instruments and output processors. Up to this
point, it has been an optional dependency.

Over the last couple of years, the package has become very wide spread,
and is available in repos for virtually every major distro. There is now
little reason not to require it as a mandatory dependency.
This commit is contained in:
Sergei Trofimov 2018-01-25 08:24:18 +00:00 committed by Marc Bonnici
parent dae4d9a934
commit 1fe899fd7c

View File

@ -80,9 +80,10 @@ params = dict(
'devlib', # Interacting with devices
'louie', # callbacks dispatch
'wrapt', # better decorators
'pandas>=0.13.1', # Data analysis and manipulation
],
extras_require={
'other': ['jinja2', 'pandas>=0.13.1'],
'other': ['jinja2'],
'test': ['nose', 'mock'],
'mongodb': ['pymongo'],
'notify': ['notify2'],