Comment 5 for bug 110133

Revision history for this message
Thomas Schilz (thschilz) wrote :

The following workaround worked for me: Install numpy in its own part via "buildout setup" before installing scipy:

[buildout]
parts = numpy python
packages = <path to directory containing numpy-1.6.2.zip>

[numpy]
recipe = collective.recipe.cmd
cmds =
  tmpdir=`mktemp -d`
  cd $tmpdir
  unzip -x ${buildout:packages}/numpy-1.6.2.zip
  ${buildout:directory}/bin/buildout setup numpy-1.6.2 install
on_install = true
on_update = true

[python]
recipe = zc.recipe.egg
eggs = scipy
interpreter=python