[SciPy-Dev] scipy 0.10.0 release schedule update

Matthew Brett matthew.brett at gmail.com
Mon Oct 31 02:46:37 EDT 2011


Hi,

On Sun, Oct 30, 2011 at 3:56 PM, Ralf Gommers
<ralf.gommers at googlemail.com> wrote:
>
>
> On Sun, Oct 30, 2011 at 11:22 PM, Matthew Brett <matthew.brett at gmail.com>
> wrote:
>>
>> Hi,
>>
>> On Sun, Oct 30, 2011 at 2:31 PM, Ralf Gommers
>> <ralf.gommers at googlemail.com> wrote:
>> >
>> > Ralf
>>
>> It's just a one-liner fix to the compilation for cython 0.15, as far
>> as I can see:
>
> That's good news.
>>
>> diff --git a/scipy/io/matlab/mio5_utils.pyx
>> b/scipy/io/matlab/mio5_utils.pyx
>> index cb15a00..1604a61 100644
>> --- a/scipy/io/matlab/mio5_utils.pyx
>> +++ b/scipy/io/matlab/mio5_utils.pyx
>> @@ -169,7 +169,7 @@ cdef class VarReader5:
>>     * mat_dtype (bool)
>>     * squeeze_me (bool)
>>     """
>> -    def __new__(self, preader):
>> +    def __cinit__(self, preader):
>>         byte_order = preader.byte_order
>>         self.is_swapped = byte_order == swapped_code
>>         if self.is_swapped:
>>
>> Do you want me to build the c files with Cython 0.15 as well?
>
> Either way is fine. All Cython files should be regenerated in any case with
> this fix included:
> https://github.com/cython/cython/commit/0443ad3d55f0a4762d4009bc606cb98ee4f4a1d6

Maybe I'll leave the building to you then - so we can make sure they
all get built right?

I'll just submit the thing above as a tiny pull request. as I believe
it has no functional consequences.

See you,

Matthew



More information about the SciPy-Dev mailing list