Re: [Numpy-discussion] Vagrant VM for building NumPy (1.7.x) Windows binaries

2012-08-13 Thread Nathaniel Smith
On Mon, Aug 13, 2012 at 5:13 AM, Ondřej Čertík ondrej.cer...@gmail.com wrote: All essential logic is in these two files: https://github.com/certik/numpy-vendor/blob/master/fabfile.py https://github.com/certik/numpy-vendor/blob/master/setup-wine.sh The setup-wine.sh can be used directly in

Re: [Numpy-discussion] Vagrant VM for building NumPy (1.7.x) Windows binaries

2012-08-13 Thread David Cournapeau
Hi Ondrej, On Mon, Aug 13, 2012 at 5:13 AM, Ondřej Čertík ondrej.cer...@gmail.com wrote: Hi, I've created this repository: https://github.com/certik/numpy-vendor which uses Vagrant and Fabric to fully automate the setup creation of NumPy binaries for Windows. The setup is especially

Re: [Numpy-discussion] Vagrant VM for building NumPy (1.7.x) Windows binaries

2012-08-13 Thread Ondřej Čertík
On Mon, Aug 13, 2012 at 6:46 AM, David Cournapeau courn...@gmail.com wrote: Hi Ondrej, On Mon, Aug 13, 2012 at 5:13 AM, Ondřej Čertík ondrej.cer...@gmail.com wrote: Hi, I've created this repository: https://github.com/certik/numpy-vendor which uses Vagrant and Fabric to fully automate

[Numpy-discussion] Iterating over a given axis with buffering

2012-08-13 Thread Sergio Pascual
Hi, I have a 3d array of bitswapped data, dimensions 2000x2000x20. I want to apply a function over the third axis to obtain a 2000x2000 array. This is what numpy.apply_along_axis does, but I need a faster version, so I'm writing it in C. I started by writing a generic ufunc version of the code. It

Re: [Numpy-discussion] Vagrant VM for building NumPy (1.7.x) Windows binaries

2012-08-13 Thread Ondřej Čertík
On Mon, Aug 13, 2012 at 8:06 AM, Ondřej Čertík ondrej.cer...@gmail.com wrote: On Mon, Aug 13, 2012 at 6:46 AM, David Cournapeau courn...@gmail.com wrote: [...] Did you see veewee to create vagrant boxes ? It simplifies quite a few things, but maybe they matter more on windows than on linux,

[Numpy-discussion] ANN: SciPy 0.11.0 release candidate 2

2012-08-13 Thread Ralf Gommers
Hi, I am pleased to announce the availability of the second release candidate of SciPy 0.11.0. For this release many new features have been added, and over 120 tickets and pull requests have been closed. Also noteworthy is that the number of contributors for this release has risen to over 50.

[Numpy-discussion] how to use numpy-vendor

2012-08-13 Thread Ondřej Čertík
Hi, How should one use the vendor repository (https://github.com/numpy/vendor) in Wine? Should I put the binaries into .wine/drive_c/Python25/libs/, or somewhere else? I've search all mailinglists and I didn't find any information on it. I vaguely remember that somebody mentioned it somewhere,