Re: [Matplotlib-users] matplotlib._path failed on windows build for Python 2.6

2009-04-10 Thread Michael Droettboom
Lorenzo Di Gregorio wrote: Well, that's exactly the problem: I just can't load some DLLs! import matplotlib._path Traceback (most recent call last): File pyshell#0, line 1, in module import matplotlib._path ImportError: DLL load failed: Die angegebene Prozedur wurde nicht

Re: [Matplotlib-users] matplotlib._path failed on windows build for Python 2.6

2009-04-10 Thread Lorenzo Di Gregorio
On 4/10/09, Michael Droettboom md...@stsci.edu wrote: Lorenzo Di Gregorio wrote: Well, that's exactly the problem: I just can't load some DLLs! import matplotlib._path Traceback (most recent call last): File pyshell#0, line 1, in module import matplotlib._path ImportError: DLL load

Re: [Matplotlib-users] matplotlib._path failed on windows build for Python 2.6

2009-04-10 Thread Lorenzo Di Gregorio
Ouch, it looks like MinGW and Python do not fit 100% to each other. Please check out this bug report: http://bugs.python.org/issue3308 Basically MinGW erroneously ships a .lib saying localtime is in MSVCR90.DLL when it isn't. That means there is no link failure but the *pyd* will fail to load

Re: [Matplotlib-users] matplotlib._path failed on windows build for Python 2.6

2009-04-09 Thread Lorenzo Di Gregorio
On Thu, Apr 9, 2009 at 7:06 AM, Andrew Straw straw...@astraw.com wrote: Lorenzo Di Gregorio wrote: Hello, I've tried to build matplotlib 0.98.5.2 for Python 2.6 under Windows (Win2k) using MinGW and win32_static. After a few fixes, the compilation and install appear to be ok, but I've

Re: [Matplotlib-users] matplotlib._path failed on windows build for Python 2.6

2009-04-09 Thread Michael Droettboom
Can you send us the output of this Python session to help us debug? I'm curious what symbols *are* in there. import matplotlib._path dir(matplotlib._path) ['__doc__', '__file__', '__name__', 'affine_transform', 'clip_path_to_rect', 'convert_path_to_polygons',

Re: [Matplotlib-users] matplotlib._path failed on windows build for Python 2.6

2009-04-09 Thread Lorenzo Di Gregorio
Well, that's exactly the problem: I just can't load some DLLs! import matplotlib._path Traceback (most recent call last): File pyshell#0, line 1, in module import matplotlib._path ImportError: DLL load failed: Die angegebene Prozedur wurde nicht gefunden. import matplotlib._delaunay

[Matplotlib-users] matplotlib._path failed on windows build for Python 2.6

2009-04-08 Thread Lorenzo Di Gregorio
Hello, I've tried to build matplotlib 0.98.5.2 for Python 2.6 under Windows (Win2k) using MinGW and win32_static. After a few fixes, the compilation and install appear to be ok, but I've got stuck at importing matplotlib._path (see transcript below). Any suggestions on what is going wrong and

Re: [Matplotlib-users] matplotlib._path failed on windows build for Python 2.6

2009-04-08 Thread Andrew Straw
Lorenzo Di Gregorio wrote: Hello, I've tried to build matplotlib 0.98.5.2 for Python 2.6 under Windows (Win2k) using MinGW and win32_static. After a few fixes, the compilation and install appear to be ok, but I've got stuck at importing matplotlib._path (see transcript below). Any