On Wed, Jul 30, 2014 at 8:42 PM, Matthew Brett <matthew.brett@gmail.com> wrote:
Hi,

On Wed, Jul 30, 2014 at 5:12 PM, Carl Kleffner <cmkleffner@gmail.com> wrote:
> Hi,
>
> I created mingw-w64 builds for testing based on OpenBLAS, see:
> https://bitbucket.org/carlkl/mingw-w64-for-python/downloads .
>
> gists for numpy.test run:
>
> win32: https://gist.github.com/carlkl/43182c7c5e0049db7b4e
> amd64: https://gist.github.com/carlkl/c528505af31ac32720b0

I believe the amd64 failure is because Windows doesn't like you trying
to open a file that is already open - maybe this will fix it:

https://github.com/numpy/numpy/pull/4927

Cheers,

Thanks for getting this out.


I just noticed that we are getting a couple of warnings on some platforms.

Python 3.2 debug;

/usr/lib/python3.2/platform.py:381: ResourceWarning: unclosed file <_io.TextIOWrapper name='/etc/lsb-release' mode='rU' encoding='UTF-8'>

full_distribution_name=0)


USE_CHROOT=1 ARCH=i386 DIST=trusty PYTHON=3.4

/usr/local/lib/python3.4/dist-packages/numpy/distutils/cpuinfo.py:120: UserWarning: [Errno 2] No such file or directory: '/proc/cpuinfo'

warnings.warn(str(e), UserWarning)

Not sure about the second one.

Chuck