mirror of
https://github.com/ARM-software/workload-automation.git
synced 2025-04-20 09:40:50 +01:00
setup.py: Add work around for installing pandas
For some reason the automatic install of pandas will fail compilation due to an issue with numpy. A workaround for this issue is to specify numpy in `setup_requires` as mentioned in https://github.com/numpy/numpy/issues/2434
This commit is contained in:
parent
4703dc616a
commit
9efb95f4ff
3
setup.py
3
setup.py
@ -70,6 +70,9 @@ params = dict(
|
|||||||
license='Apache v2',
|
license='Apache v2',
|
||||||
maintainer='ARM Architecture & Technology Device Lab',
|
maintainer='ARM Architecture & Technology Device Lab',
|
||||||
maintainer_email='workload-automation@arm.com',
|
maintainer_email='workload-automation@arm.com',
|
||||||
|
setup_requires=[
|
||||||
|
'numpy'
|
||||||
|
],
|
||||||
install_requires=[
|
install_requires=[
|
||||||
'python-dateutil', # converting between UTC and local time.
|
'python-dateutil', # converting between UTC and local time.
|
||||||
'pexpect>=3.3', # Send/receive to/from device
|
'pexpect>=3.3', # Send/receive to/from device
|
||||||
|
Loading…
x
Reference in New Issue
Block a user