[Numpy-discussion] ANN: NumPy 1.7.2rc1 release

Charles R Harris charlesr.harris at gmail.com
Tue Nov 12 18:24:21 EST 2013


On Tue, Nov 12, 2013 at 2:38 PM, Derek Homeier <
derek at astro.physik.uni-goettingen.de> wrote:

> Hi,
>
> On 03.11.2013, at 5:42PM, Julian Taylor <jtaylor.debian at googlemail.com>
> wrote:
>
> > I'm happy to announce the release candidate of Numpy 1.7.2.
> > This is a bugfix only release supporting Python 2.4 - 2.7 and 3.1 - 3.3.
>
> on OS X 10.5, build and tests succeed for Python 2.5-3.3, but Python 2.4.4
> fails with
>
> /sw/bin/python2.4 setup.py build
> Running from numpy source directory.
> Traceback (most recent call last):
>   File "setup.py", line 214, in ?
>     setup_package()
>   File "setup.py", line 191, in setup_package
>     from numpy.distutils.core import setup
>   File
> "/sw/src/fink.build/numpy-py24-1.7.2rc1-1/numpy-1.7.2rc1/numpy/distutils/core.py",
> line 25, in ?
>     from numpy.distutils.command import config, config_compiler, \
>   File
> "/sw/src/fink.build/numpy-py24-1.7.2rc1-1/numpy-1.7.2rc1/numpy/distutils/command/build_ext.py",
> line 16, in ?
>     from numpy.distutils.system_info import combine_paths
>   File
> "/sw/src/fink.build/numpy-py24-1.7.2rc1-1/numpy-1.7.2rc1/numpy/distutils/system_info.py",
> line 235
>     finally:
>           ^
> SyntaxError: invalid syntax
>
>
Ah, thanks for testing with 2.4. Looks like it could use some fixes. For
2.4  (googled) the try with finally needs to be nested:

try:
    try:
        return client.fetch_pack(path, determine_wants, graphwalker,
f.write, self.ui.status)
    except HangupException:
        raise hgutil.Abort("the remote end hung up unexpectedly")
finally:
    commit()

Chuck
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/numpy-discussion/attachments/20131112/6c444b77/attachment.html>


More information about the NumPy-Discussion mailing list