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 numpy. A workaround for this issue is to specify numpy in
`setup_requires` as mentioned in
numpy/numpy#2434
  • Loading branch information
marcbonnici committed Feb 14, 2018
1 parent 2a712cd commit a9cb724
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion 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 All @@ -79,7 +82,7 @@
'requests', # Fetch assets over HTTP
'devlib', # Interacting with devices
'louie', # callbacks dispatch
'wrapt', # better decorators
'wrapt', # better decorators
'pandas>=0.13.1', # Data analysis and manipulation
],
extras_require={
Expand Down

0 comments on commit a9cb724

Please sign in to comment.