On Tue, 28 Feb 2017 10:46:53 +0000 Santiago Vila <sanv...@debian.org> wrote: > Package: src:mpi4py > Version: 2.0.0-2 ... > > I tried to build this package in stretch with "dpkg-buildpackage -A" > but it failed: ... > MPI.Win.Create(None, 1, MPI.INFO_NULL, MPI.COMM_SELF).Free() > File "MPI/Win.pyx", line 73, in mpi4py.MPI.Win.Create (src/mpi4py.MPI.c:123760) > Exception: MPI_ERR_WIN: invalid window
The error occurs during tests. Has something changed in the API for mpi4py.MPI.Win.Create? Looks like wrong input parameters to the function might be being passed in the test script. The FTBFS is readily fixed (worked around) by treating the test errors as warnings using || /bin/true in debian/rules: /usr/bin/python$$v /usr/bin/nosetests -v --exclude='testPackUnpackExternal' -A "not network" || /bin/true ; \ If you don't time to debug the root cause of the errors, I'll upload an NMU with the warning workaround. Drew