Re: [Numpy-discussion] questions about a "complicated" user-defined dtype and the ufunc API

2010-08-26 Thread Sebastian Haase
On Thu, Aug 26, 2010 at 5:09 PM, Nathaniel Smith wrote: > On Mon, Aug 23, 2010 at 9:20 AM, Travis Oliphant > wrote: >> On Aug 22, 2010, at 4:36 PM, Nathaniel Smith wrote: >>> Question 2: Am I missing something, or does the ufunc API make this >>> impossible? The problem is that a "PyUFuncGeneric

Re: [Numpy-discussion] [SciPy-User] ANN: NumPy 1.5.0 release candidate 1

2010-08-26 Thread Bruce Southey
On Thu, Aug 26, 2010 at 6:30 AM, Ralf Gommers wrote: > I am pleased to announce the availability of the first release candidate of > NumPy 1.5.0. This will be the first NumPy release to include support for > Python 3, as well as for Python 2.7. > > Please try this RC and report any problems on the

Re: [Numpy-discussion] BUG: NumPy exposes the wrong include directory

2010-08-26 Thread Stéfan van der Walt
On 26 August 2010 16:42, Ralf Gommers wrote: >> > Without this patch, numpy.distutils is broken on, amongs others, >> > Ubuntu.  This prohibits packages such as Enthought's Enable from being >> > built successfully. >> > >> > Would anyone object if I applied it to trunk? >> > Ehm, didn't you apply

Re: [Numpy-discussion] bug in dtype.__eq__ method, bug filed

2010-08-26 Thread Zbyszek Szmek
http://projects.scipy.org/numpy/ticket/1594 ___ NumPy-Discussion mailing list NumPy-Discussion@scipy.org http://mail.scipy.org/mailman/listinfo/numpy-discussion

Re: [Numpy-discussion] Polynomials

2010-08-26 Thread Ralf Gommers
On Wed, Aug 25, 2010 at 11:44 PM, Charles R Harris < charlesr.har...@gmail.com> wrote: > > > On Wed, Aug 25, 2010 at 8:00 AM, Ralf Gommers > wrote: > >> >> >> On Tue, Aug 24, 2010 at 10:58 PM, Travis Oliphant > > wrote: >> >>> >>> On Aug 23, 2010, at 10:30 PM, Charles R Harris wrote: >>> >>> > Hi

Re: [Numpy-discussion] ANN: NumPy 1.5.0 release candidate 1

2010-08-26 Thread Ralf Gommers
On Thu, Aug 26, 2010 at 10:00 PM, Kevin Jacobs < bioinfor...@gmail.com> wrote: > On Thu, Aug 26, 2010 at 7:30 AM, Ralf Gommers > wrote: > >> I am pleased to announce the availability of the first release candidate >> of NumPy 1.5.0. This will be the first NumPy release to include support >> for

Re: [Numpy-discussion] questions about a "complicated" user-defined dtype and the ufunc API

2010-08-26 Thread Nathaniel Smith
On Mon, Aug 23, 2010 at 9:20 AM, Travis Oliphant wrote: > On Aug 22, 2010, at 4:36 PM, Nathaniel Smith wrote: >> Question 2: Am I missing something, or does the ufunc API make this >> impossible? The problem is that a "PyUFuncGenericFunction" doesn't >> have any way to find the dtypes of the array

Re: [Numpy-discussion] BUG: NumPy exposes the wrong include directory

2010-08-26 Thread Ralf Gommers
On Wed, Aug 25, 2010 at 6:58 PM, David Cournapeau wrote: > 2010/8/25 Stéfan van der Walt : > > Hi all, > > > > Without this patch, numpy.distutils is broken on, amongs others, > > Ubuntu. This prohibits packages such as Enthought's Enable from being > > built successfully. > > > > Would anyone ob

Re: [Numpy-discussion] Github migration?

2010-08-26 Thread Jason McCampbell
On Wed, Aug 25, 2010 at 10:20 AM, Charles R Harris < charlesr.har...@gmail.com> wrote: > > > On Wed, Aug 25, 2010 at 8:19 AM, Jason McCampbell < > jmccampb...@enthought.com> wrote: > >> Chuck, >> >> I will update the wiki page on the Numpy developer site that discusses the >> refactoring this week

Re: [Numpy-discussion] ANN: NumPy 1.5.0 release candidate 1

2010-08-26 Thread Kevin Jacobs
On Thu, Aug 26, 2010 at 7:30 AM, Ralf Gommers wrote: > I am pleased to announce the availability of the first release candidate > of NumPy 1.5.0. This will be the first NumPy release to include support > for Python 3, as well as for Python 2.7. > > Please try this RC and report any problems on the

[Numpy-discussion] ANN: NumPy 1.5.0 release candidate 1

2010-08-26 Thread Ralf Gommers
I am pleased to announce the availability of the first release candidate of NumPy 1.5.0. This will be the first NumPy release to include support for Python 3, as well as for Python 2.7. Please try this RC and report any problems on the NumPy mailing list. Especially with Python 3 testing will be v

Re: [Numpy-discussion] curious behavior with indexed assignment

2010-08-26 Thread Stéfan van der Walt
On 26 August 2010 03:16, Nathaniel Smith wrote: > So on IRC #scipy just now, Carlos Scheidegger pointed out some > behavior that I at least find very surprising: > a = np.zeros(10) a[:] = np.arange(3) > ValueError: shape mismatch: objects cannot be broadcast to a single shape Another on