shunwang / numexpr

Automatically exported from code.google.com/p/numexpr
MIT License
0 stars 0 forks source link

Make numexpr installable pip #88

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?

1. Create requirements.txt eg 
http://stackoverflow.com/questions/11015692/pip-fails-to-install-packages-from-r
equirements-txt
2. pip install -r requirements.txt # probably in a virtualenv

What is the expected output? What do you see instead?

Successful install 
Actually get ImportError: No module named numpy log here 
http://pastie.org/4079800 

Please provide any additional information below.

As per stackoverflow comment:

ts setup.py should be modified to only import from numpy if you're actually 
building it, e.g. by catching the ImportError and proceeding without the 
extra_setup_opts if you're just running setup.py egg_info. 

Original issue reported on code.google.com by pnas...@google.com on 17 Jun 2012 at 9:10