[Numpy-discussion] ANN: numexpr 2.4 is out

2014-04-13 Thread Francesc Alted
Announcing Numexpr 2.4 Numexpr is a fast numerical expression evaluator for NumPy. With it, expressions that operate on arrays (like 3*a+4*b) are accelerated and use less memory than doing the same calculation in Python. It wears

[Numpy-discussion] Writing successful tests

2014-04-13 Thread matt
Greetings, I'm working on an additional function for numpy/lib/twodim_base.py. I'm trying to add some tests for the new function, and numpy/lib/tests/test_twodim_base.py seems like the right place for them. My problem is travis-ci tells me my tests are no good. The error message I get on my

Re: [Numpy-discussion] Writing successful tests

2014-04-13 Thread Nathaniel Smith
On Mon, Apr 14, 2014 at 6:26 AM, m...@pagan.io wrote: Greetings, I'm working on an additional function for numpy/lib/twodim_base.py. I'm trying to add some tests for the new function, and numpy/lib/tests/test_twodim_base.py seems like the right place for them. My problem is travis-ci tells