[matplotlib-devel] IPython Comm backend

2013-10-10 Thread Jason Grout
I've been working on a backend based on the webagg backend, but that uses the IPython Comm architecture at https://github.com/ipython/ipython/pull/4195 to send messages instead of starting a server and opening websocket connections. I have an initial version in my github ipython-comm branch (s

[matplotlib-devel] python3 bug in __init__.py - plus fix

2013-10-10 Thread Alexander Heger
I am using Fedora 19, 64 bit, and the distribution's python 3.3.2, and the most recent version of mpl from git there seems to be a bug in the starup routine where proper conversion from bytes to string (as needed for Python 3) is not done the problem is in /matplotlib/__init__.py, line 459 ... 4

Re: [matplotlib-devel] New tests failing when run together

2013-10-10 Thread Todd
The branch is matplotlib/toddrjen spectral: https://github.com/toddrjen/matplotlib/tree/spectral Specifically the tests that are causing the problem are in test_mlab.py. I tried reorganizing the tests into subclasses and implementing a cleanup class (that is the current HEAD), but the problem ex

[matplotlib-devel] 1.3.1 tagged

2013-10-10 Thread Michael Droettboom
I have tagged and uploaded 1.3.1. It is exactly the same as 1.3.1rc2, with only the version number being different. Once the Windows binaries are ready, I'll make a broader announcement in the usual places. Mike -- _ |\/|o _|_ _. _ | | \.__ __|__|_|_ _ _ ._ _ | ||(_|

Re: [matplotlib-devel] New tests failing when run together

2013-10-10 Thread Michael Droettboom
Are your tests including the "@cleanup" decorator? (The @cleanup decorator is run implicitly with the @image_comparison decorator, so you really only need one or the other). Beyond that wild guess, I'm not sure what could be going on. You could file a pull request with your new code, even if

[matplotlib-devel] Image comparison decorators outside matplotlib

2013-10-10 Thread Eduard Bopp
Hello, I am developing a toolkit to parse, analyse and plot some scientific data using matplotlib. Among them are some application-specific plotting functions that sort of extend matplotlib. There are these nice image comparison decorators to test code like that but I am not sure how to use them

[matplotlib-devel] New tests failing when run together

2013-10-10 Thread Todd
I have been implementing some new plot types, with tests. This code passes all existing tests. I have also expanded the tests on some existing plot types and mlab functions. These tests run fine on their own. The problem is that, when I run the code with the new tests, I get a lot of out of mem