It appears the problem with getting a numpy-1.0 built with RPM is caused by
using 2 step process:
python setup.py build
python setup.py install --skip-build --root $RPM_BUILD_ROOT
This doesn't seem to work correctly!
If I change it to just do:
python setup.py install
it works OK.
|