Skip to content

Commit

Permalink
setup.py: Add work around for installing pandas
Browse files Browse the repository at this point in the history
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 numpy/numpy#2434
  • Loading branch information
marcbonnici authored and Rahlubenru committed Mar 22, 2018
1 parent 2ea4862 commit 5b0b64d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions setup.py
Expand Up @@ -70,6 +70,9 @@
license='Apache v2',
maintainer='ARM Architecture & Technology Device Lab',
maintainer_email='workload-automation@arm.com',
setup_requires=[
'numpy'
],
install_requires=[
'python-dateutil', # converting between UTC and local time.
'pexpect>=3.3', # Send/receive to/from device
Expand Down

0 comments on commit 5b0b64d

Please sign in to comment.