You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
(33) |
Dec
(20) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(7) |
Feb
(44) |
Mar
(51) |
Apr
(43) |
May
(43) |
Jun
(36) |
Jul
(61) |
Aug
(44) |
Sep
(25) |
Oct
(82) |
Nov
(97) |
Dec
(47) |
2005 |
Jan
(77) |
Feb
(143) |
Mar
(42) |
Apr
(31) |
May
(93) |
Jun
(93) |
Jul
(35) |
Aug
(78) |
Sep
(56) |
Oct
(44) |
Nov
(72) |
Dec
(75) |
2006 |
Jan
(116) |
Feb
(99) |
Mar
(181) |
Apr
(171) |
May
(112) |
Jun
(86) |
Jul
(91) |
Aug
(111) |
Sep
(77) |
Oct
(72) |
Nov
(57) |
Dec
(51) |
2007 |
Jan
(64) |
Feb
(116) |
Mar
(70) |
Apr
(74) |
May
(53) |
Jun
(40) |
Jul
(519) |
Aug
(151) |
Sep
(132) |
Oct
(74) |
Nov
(282) |
Dec
(190) |
2008 |
Jan
(141) |
Feb
(67) |
Mar
(69) |
Apr
(96) |
May
(227) |
Jun
(404) |
Jul
(399) |
Aug
(96) |
Sep
(120) |
Oct
(205) |
Nov
(126) |
Dec
(261) |
2009 |
Jan
(136) |
Feb
(136) |
Mar
(119) |
Apr
(124) |
May
(155) |
Jun
(98) |
Jul
(136) |
Aug
(292) |
Sep
(174) |
Oct
(126) |
Nov
(126) |
Dec
(79) |
2010 |
Jan
(109) |
Feb
(83) |
Mar
(139) |
Apr
(91) |
May
(79) |
Jun
(164) |
Jul
(184) |
Aug
(146) |
Sep
(163) |
Oct
(128) |
Nov
(70) |
Dec
(73) |
2011 |
Jan
(235) |
Feb
(165) |
Mar
(147) |
Apr
(86) |
May
(74) |
Jun
(118) |
Jul
(65) |
Aug
(75) |
Sep
(162) |
Oct
(94) |
Nov
(48) |
Dec
(44) |
2012 |
Jan
(49) |
Feb
(40) |
Mar
(88) |
Apr
(35) |
May
(52) |
Jun
(69) |
Jul
(90) |
Aug
(123) |
Sep
(112) |
Oct
(120) |
Nov
(105) |
Dec
(116) |
2013 |
Jan
(76) |
Feb
(26) |
Mar
(78) |
Apr
(43) |
May
(61) |
Jun
(53) |
Jul
(147) |
Aug
(85) |
Sep
(83) |
Oct
(122) |
Nov
(18) |
Dec
(27) |
2014 |
Jan
(58) |
Feb
(25) |
Mar
(49) |
Apr
(17) |
May
(29) |
Jun
(39) |
Jul
(53) |
Aug
(52) |
Sep
(35) |
Oct
(47) |
Nov
(110) |
Dec
(27) |
2015 |
Jan
(50) |
Feb
(93) |
Mar
(96) |
Apr
(30) |
May
(55) |
Jun
(83) |
Jul
(44) |
Aug
(8) |
Sep
(5) |
Oct
|
Nov
(1) |
Dec
(1) |
2016 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
(2) |
Jul
|
Aug
(3) |
Sep
(1) |
Oct
(3) |
Nov
|
Dec
|
2017 |
Jan
|
Feb
(5) |
Mar
|
Apr
|
May
|
Jun
|
Jul
(3) |
Aug
|
Sep
(7) |
Oct
|
Nov
|
Dec
|
2018 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(2) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Jae-Joon L. <lee...@gm...> - 2012-03-28 12:59:46
|
I'm afraid that, unfortunately, it won't be fixed soon (if ever, as far as I can tell). What "tight_layout" does is to adjust the *subplot parameters* of the figure so that the "subplots" fit in. Artists created with figtext command is not affected by the subplot parameters, i.e. there is not much thing we can do for these artists within the current implementation. It would be better if some warning is printed in such case (there are lots of cases that tight_layout will fail), but this is not currently done. Depending on your need, you may leave out some area for figtext when you call "tight_layout". This is only supported for gridspec though. import matplotlib.pyplot as plt import matplotlib.gridspec as gridspec fig = plt.figure() gs1 = gridspec.GridSpec(2, 2) ax_list = [fig.add_subplot(ss) for ss in gs1] fig.text (02, 0, "test", horizontalalignment='left', verticalalignment='bottom', size=5) fig.text (0.5, 1, "01", horizontalalignment='left', verticalalignment='top', size='x-small') gs1.tight_layout(fig, rect=[0, 0.03, 1, 0.97]) # adjust rect parameter to make some room for figtext. Regards, -JJ On Wed, Mar 28, 2012 at 9:17 PM, Neal Becker <ndb...@gm...> wrote: > I just tried 1.1.1rc to see if it fixed the tight_layout for figtext. > > I have a semilogy plot, and add some lines of text on the bottom (and top): > > plt.figtext (0, 0, res['carriers'].values, horizontalalignment='left', > verticalalignment='bottom', size=5) > plt.figtext (0.5, 1, self.pageno, horizontalalignment='left', > verticalalignment='top', size='x-small') > ##plt.tight_layout(pad=1.0) > plt.tight_layout() > > The text on the bottom is overprinting the x axis - the same as happened with > the previous release. > > > ------------------------------------------------------------------------------ > This SF email is sponsosred by: > Try Windows Azure free for 90 days Click Here > http://p.sf.net/sfu/sfd2d-msazure > _______________________________________________ > Matplotlib-devel mailing list > Mat...@li... > https://lists.sourceforge.net/lists/listinfo/matplotlib-devel |
From: Neal B. <ndb...@gm...> - 2012-03-28 12:34:39
|
I'm getting these messages, which did not occur with 1.1: Traceback (most recent call last): File "/home/nbecker/.local/lib/python2.7/site- packages/matplotlib/backends/backend_qt4.py", line 151, in <lambda> lambda: self.close_event()) File "/home/nbecker/.local/lib/python2.7/site- packages/matplotlib/backend_bases.py", line 1564, in close_event self.callbacks.process(s, event) RuntimeError: underlying C/C++ object has been deleted |
From: Neal B. <ndb...@gm...> - 2012-03-28 12:17:35
|
I just tried 1.1.1rc to see if it fixed the tight_layout for figtext. I have a semilogy plot, and add some lines of text on the bottom (and top): plt.figtext (0, 0, res['carriers'].values, horizontalalignment='left', verticalalignment='bottom', size=5) plt.figtext (0.5, 1, self.pageno, horizontalalignment='left', verticalalignment='top', size='x-small') ##plt.tight_layout(pad=1.0) plt.tight_layout() The text on the bottom is overprinting the x axis - the same as happened with the previous release. |
From: Tony Yu <ts...@gm...> - 2012-03-27 14:00:14
|
On Mon, Mar 26, 2012 at 7:42 PM, Tony Yu <ts...@gm...> wrote: > I'm drawing hexbins with alpha < 1 and get dark lines at the bin edges. It > turns out that setting `edgecolors = 'none'` sets the edge color to be the > same as the face color, as mentioned in the docstring: > > If ``'none'``, draws the edges in the same color as the fill > color. > This is the default, as it avoids unsightly unpainted pixels > between the hexagons. > > This behavior is a bit weird, since setting colors to 'none' usually makes > the element invisible. Wouldn't it be more consistent to let 'none' be > passed to the PolyCollection (which draws the hexbins), such that edges > aren't drawn. Then, to maintain the current behavior, change the default to > 'face'. (Of course, this wouldn't really maintain current behavior for code > that explicitly passes `edgecolors='none'`.) > > Also, if I let 'none' get passed to the PolyCollection, I don't see the > "unsightly unpainted pixels between the hexagons". Is this just a > system-dependent artifact, or is it an outdated docstring? > > Thanks, > -Tony > Just to clarify, here's an example of how I think hexbin should behave: https://github.com/tonysyu/matplotlib/commit/39e28540d30a55c18975533fe3625c47506c5908 -Tony |
From: John H. <jd...@gm...> - 2012-03-27 00:48:59
|
On Mar 26, 2012, at 7:37 PM, Derek Homeier <de...@as...> wrote: > Hi Sandro, > >> yes, Debian has a separate package for documentation (since it >> requires to be build just on time, whilc mpl requires to be built on >> each architecture we support, so splitting the package results in a >> lot of saved space). JFYR this is the layout of packages in Debian: >> >> python-matplotlib - the python module >> python-matplotlib-data - mpl-data dir + sampeldata + config files + nib + fonts >> python-matplotlib-dbg - debug symbols for python extensions >> python-matplotlib-doc - all the built doc, in html and pdf formats > > thanks for the info; currently fink only has extra packages for the basemap toolkit. > While there are not that many actual architectures, there are still up to 4 or 5 > Python versions to support, so a single doc package could also save a lot > (although I am not sure how to setup such a build yet…). > The actual matplotlib module could also be reduced much further in size when > building from the _notests tar ball. I am not sure how much demand there is > for normal users to be able to run the complete test suite. Or is this just a > temporary option for the rc builds anyway? > I have also been uploading a "notests" tarball for those who do not want to carry the extra weight of the baseline test images. For packagers concerned about size, one option would be to provide just the baseline images as a separate package. These are all the PNGs recursively under lib/matplotlib/tests. |
From: Derek H. <de...@as...> - 2012-03-27 00:37:57
|
Hi Sandro, > yes, Debian has a separate package for documentation (since it > requires to be build just on time, whilc mpl requires to be built on > each architecture we support, so splitting the package results in a > lot of saved space). JFYR this is the layout of packages in Debian: > > python-matplotlib - the python module > python-matplotlib-data - mpl-data dir + sampeldata + config files + nib + fonts > python-matplotlib-dbg - debug symbols for python extensions > python-matplotlib-doc - all the built doc, in html and pdf formats thanks for the info; currently fink only has extra packages for the basemap toolkit. While there are not that many actual architectures, there are still up to 4 or 5 Python versions to support, so a single doc package could also save a lot (although I am not sure how to setup such a build yet…). The actual matplotlib module could also be reduced much further in size when building from the _notests tar ball. I am not sure how much demand there is for normal users to be able to run the complete test suite. Or is this just a temporary option for the rc builds anyway? Cheers, Derek |
From: Derek H. <de...@as...> - 2012-03-27 00:29:57
|
On 26.03.2012, at 7:43PM, John Hunter wrote: > On Mon, Mar 26, 2012 at 12:00 PM, Russell Owen <ro...@uw...> wrote: > On Mar 24, 2012, at 12:16 PM, Sandro Tosi wrote: > > > On Sat, Mar 24, 2012 at 18:13, Derek Homeier > > <de...@as...> wrote: > >> I used the 1.1.0 version to build with the fink Python installation on MaxOS X > >> and everything seems to work there, passing the tests at least (does pylab.test('full') > >> execute all tests? It seems a rather small number…). > > > > to run tests I use: > > > > python -c "import matplotlib as m ; m.test(verbosity=1)" > > Thank you for the test instructions. That's a much more complete test than I had been using. I get the following one failure on Mac OS X 10.6 using my new binary installer (results are appended). I'm also concerned about the complaint: > """ > /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/matplotlib/__init__.py:921: UserWarning: This call to matplotlib.use() has no effect > because the the backend has already been chosen; > matplotlib.use() must be called *before* pylab, matplotlib.pyplot, > or matplotlib.backends is imported for the first time. > """ > which suggests a test that is mis-written. > > At the end of the tests we try and switch back to the users original backend (we switch into agg at the start) in case the user is running interactively. This warning is mostly harmless, and doesn't indicate a problem with any tests. It appears you have just the one failure on fonts-styles. > I also had two failures of this type on my first attempt to test the package; now when testing within the fink build environment, everything passes. This might have to do with the fontconfig setup, not sure if I can reproduce it any more or nail it further down. > Ran 1061 tests in 344.859s > > FAILED (KNOWNFAIL=541, failures=1) Russel, you may also want to check the testing dependencies mentioned in connection with the tests under Windows in this thread - installing inkscape in addition to ghostscript and pil got me rid of the Known Failures (due to missing functionality for comparing PDF and SVG output) as well. Does anyone see a problem with running the tests with 'python -B'? Otherwise I'd need to get rid of the byte-compiled files in the build directory afterwards, as they would cause the package validation to fail. Cheers, Derek |
From: Tony Yu <ts...@gm...> - 2012-03-26 23:42:27
|
I'm drawing hexbins with alpha < 1 and get dark lines at the bin edges. It turns out that setting `edgecolors = 'none'` sets the edge color to be the same as the face color, as mentioned in the docstring: If ``'none'``, draws the edges in the same color as the fill color. This is the default, as it avoids unsightly unpainted pixels between the hexagons. This behavior is a bit weird, since setting colors to 'none' usually makes the element invisible. Wouldn't it be more consistent to let 'none' be passed to the PolyCollection (which draws the hexbins), such that edges aren't drawn. Then, to maintain the current behavior, change the default to 'face'. (Of course, this wouldn't really maintain current behavior for code that explicitly passes `edgecolors='none'`.) Also, if I let 'none' get passed to the PolyCollection, I don't see the "unsightly unpainted pixels between the hexagons". Is this just a system-dependent artifact, or is it an outdated docstring? Thanks, -Tony |
From: John H. <jd...@gm...> - 2012-03-26 17:43:36
|
On Mon, Mar 26, 2012 at 12:00 PM, Russell Owen <ro...@uw...> wrote: > On Mar 24, 2012, at 12:16 PM, Sandro Tosi wrote: > > > On Sat, Mar 24, 2012 at 18:13, Derek Homeier > > <de...@as...> wrote: > >> I used the 1.1.0 version to build with the fink Python installation on > MaxOS X > >> and everything seems to work there, passing the tests at least (does > pylab.test('full') > >> execute all tests? It seems a rather small number…). > > > > to run tests I use: > > > > python -c "import matplotlib as m ; m.test(verbosity=1)" > > Thank you for the test instructions. That's a much more complete test than > I had been using. I get the following one failure on Mac OS X 10.6 using my > new binary installer (results are appended). I'm also concerned about the > complaint: > """ > /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/matplotlib/__init__.py:921: > UserWarning: This call to matplotlib.use() has no effect > because the the backend has already been chosen; > matplotlib.use() must be called *before* pylab, matplotlib.pyplot, > or matplotlib.backends is imported for the first time. > """ > which suggests a test that is mis-written. At the end of the tests we try and switch back to the users original backend (we switch into agg at the start) in case the user is running interactively. This warning is mostly harmless, and doesn't indicate a problem with any tests. It appears you have just the one failure on fonts-styles. JDH > |
From: Russell O. <ro...@uw...> - 2012-03-26 17:04:30
|
On Mar 24, 2012, at 12:16 PM, Sandro Tosi wrote: > On Sat, Mar 24, 2012 at 18:13, Derek Homeier > <de...@as...> wrote: >> I used the 1.1.0 version to build with the fink Python installation on MaxOS X >> and everything seems to work there, passing the tests at least (does pylab.test('full') >> execute all tests? It seems a rather small number…). > > to run tests I use: > > python -c "import matplotlib as m ; m.test(verbosity=1)" Thank you for the test instructions. That's a much more complete test than I had been using. I get the following one failure on Mac OS X 10.6 using my new binary installer (results are appended). I'm also concerned about the complaint: """ /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/matplotlib/__init__.py:921: UserWarning: This call to matplotlib.use() has no effect because the the backend has already been chosen; matplotlib.use() must be called *before* pylab, matplotlib.pyplot, or matplotlib.backends is imported for the first time. """ which suggests a test that is mis-written. -- Russell localhost$ python imporPython 2.7.2 (v2.7.2:8527427914a2, Jun 11 2011, 14:13:39) [GCC 4.0.1 (Apple Inc. build 5493)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> import matplotlib matplotlib.>>> matplotlib.test(verbosity=1) ..K.............KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK..KK.KK.KK.KK.KK.KK.KKK...KK...KK.KK..KKKK..KK.KK.KK.KK.KK..KK.KK.KK............K................................................................K..K......................................K......................K....................................K....KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK.KK../Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/matplotlib/font_manager.py:1218: UserWarning: findfont: Font family ['sans-serif'] not found. Falling back to Bitstream Vera Sans (prop.get_family(), self.defaultFamily[fontext])) /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/matplotlib/font_manager.py:1228: UserWarning: findfont: Could not match :family=Bitstream Vera Sans:style=normal:variant=normal:weight=normal:stretch=normal:size=14.0. Returning /Applications/TUI.app/Contents/Resources/lib/python2.7/matplotlib/mpl-data/fonts/ttf/Vera.ttf UserWarning) /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/matplotlib/font_manager.py:1228: UserWarning: findfont: Could not match :family=Bitstream Vera Sans:style=normal:variant=normal:weight=bold:stretch=500:size=14.0. Returning /Applications/TUI.app/Contents/Resources/lib/python2.7/matplotlib/mpl-data/fonts/ttf/Vera.ttf UserWarning) /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/matplotlib/font_manager.py:1218: UserWarning: findfont: Font family ['sans serif'] not found. Falling back to Bitstream Vera Sans (prop.get_family(), self.defaultFamily[fontext])) /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/matplotlib/font_manager.py:1228: UserWarning: findfont: Could not match :family=Bitstream Vera Sans:style=italic:variant=normal:weight=750:stretch=500:size=14.0. Returning /Applications/TUI.app/Contents/Resources/lib/python2.7/matplotlib/mpl-data/fonts/ttf/Vera.ttf UserWarning) /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/matplotlib/font_manager.py:1228: UserWarning: findfont: Could not match :family=Bitstream Vera Sans:style=normal:variant=normal:weight=200:stretch=500:size=14.0. Returning /Applications/TUI.app/Contents/Resources/lib/python2.7/matplotlib/mpl-data/fonts/ttf/Vera.ttf UserWarning) /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/matplotlib/font_manager.py:1228: UserWarning: findfont: Could not match :family=Bitstream Vera Sans:style=normal:variant=normal:weight=500:stretch=100:size=14.0. Returning /Applications/TUI.app/Contents/Resources/lib/python2.7/matplotlib/mpl-data/fonts/ttf/Vera.ttf UserWarning) FKK.KK.KK.KK.KK.KK.KK.KK.....K.......K..KK................K...........................KK.KK ====================================================================== FAIL: matplotlib.tests.test_text.test_font_styles.test ---------------------------------------------------------------------- Traceback (most recent call last): File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/nose-0.11.4-py2.7.egg/nose/case.py", line 186, in runTest self.test(*self.arg) File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/matplotlib/testing/decorators.py", line 36, in failer result = f(*args, **kwargs) File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/matplotlib/testing/decorators.py", line 140, in do_test '(RMS %(rms).3f)'%err) ImageComparisonFailure: images not close: /Users/rowen/result_images/test_text/font_styles.png vs. /Users/rowen/result_images/test_text/expected-font_styles.png (RMS 47.138) ---------------------------------------------------------------------- Ran 1061 tests in 344.859s FAILED (KNOWNFAIL=541, failures=1) /Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/matplotlib/__init__.py:921: UserWarning: This call to matplotlib.use() has no effect because the the backend has already been chosen; matplotlib.use() must be called *before* pylab, matplotlib.pyplot, or matplotlib.backends is imported for the first time. if warn: warnings.warn(_use_error_msg) False |
From: Rui D. <ru...@ya...> - 2012-03-26 14:01:02
|
Thanks - had been looking at obsolete information. WRT inkscape and ghostscript, I have installed both but still got the same fails. Upon inspection it appears that both executables need to be on system path (perhaps this should be mentioned on the coding guide?), and that the code was only looking for the 32bit GS exe name (gswin32c instead of gswin64c that i had) After that those tests all pass leaving me with: FAILED (KNOWNFAIL=2, errors=144) WRT files bug, I'll monitor that PR and test, thanks. Regards, RuiDC ________________________________ From: John Hunter <jd...@gm...> To: Rui DaCosta <ru...@ya...> Cc: matplotlib development list <mat...@li...> Sent: Monday, 26 March 2012, 15:02 Subject: Re: [matplotlib-devel] matplotlib v1.1.1 (bugfix) rc1 on Thursday On Mon, Mar 26, 2012 at 7:08 AM, Rui DaCosta <ru...@ya...> wrote: Attached is the testing output on both Win7x64 and WinXPx32. > > >FAILED (KNOWNFAIL=268, errors=144) > > > >In case anybody else is having issues, the head version of nose is required to run the tests due to multiprocessing issues in the stable version of nose. > > >After installing PIL, most of the KNOWNFAIL issues are similar to: Cannot compare pdf files on this system (why is this?) >most of the errors are: IOError: [Errno 24] Too many open files > > The bulk of the KNOWNFAILs are occurring because you do not have the pre-requisites installed for testing the PDF, SVG and PS backends. The test requirements for these backends are described at http://matplotlib.sourceforge.net/devel/coding_guide.html#requirements The bulk of the other failures are occurring because you are hitting the "too many open file" bug on windows. This has been addressed in this pull request, and we'd be happy to have testers on windows of this PR https://github.com/matplotlib/matplotlib/pull/798 JDH |
From: John H. <jd...@gm...> - 2012-03-26 13:02:53
|
On Mon, Mar 26, 2012 at 7:08 AM, Rui DaCosta <ru...@ya...> wrote: > Attached is the testing output on both Win7x64 and WinXPx32. > > FAILED (KNOWNFAIL=268, errors=144) > > In case anybody else is having issues, the head version of nose is > required to run the tests due to multiprocessing issues in the stable > version of nose. > > After installing PIL, most of the KNOWNFAIL issues are similar to: Cannot > compare pdf files on this system (why is this?) > most of the errors are: IOError: [Errno 24] Too many open files > > The bulk of the KNOWNFAILs are occurring because you do not have the pre-requisites installed for testing the PDF, SVG and PS backends. The test requirements for these backends are described at http://matplotlib.sourceforge.net/devel/coding_guide.html#requirements The bulk of the other failures are occurring because you are hitting the "too many open file" bug on windows. This has been addressed in this pull request, and we'd be happy to have testers on windows of this PR https://github.com/matplotlib/matplotlib/pull/798 JDH |
From: Rui D. <ru...@ya...> - 2012-03-26 12:09:00
|
WinXP win32 C:\>python -c "import matplotlib as m ; m.test(verbosity=2)" matplotlib.tests.test_backend_svg.test_visibility.test ... ok matplotlib.tests.test_basic.test_simple ... ok matplotlib.tests.test_basic.test_simple_knownfail ... KNOWNFAIL: Test known to fail matplotlib.tests.test_basic.test_override_builtins ... ok matplotlib.tests.test_cbook.Test_delete_masked_points.test_bad_first_arg ... ok matplotlib.tests.test_cbook.Test_delete_masked_points.test_datetime ... ok matplotlib.tests.test_cbook.Test_delete_masked_points.test_rgba ... ok matplotlib.tests.test_cbook.Test_delete_masked_points.test_string_seq ... ok matplotlib.tests.test_cbook.test_is_string_like ... ok matplotlib.tests.test_cbook.test_restrict_dict ... ok matplotlib.tests.test_mlab.test_colinear_pca ... ok matplotlib.tests.test_mlab.test_recarray_csv_roundtrip ... ok matplotlib.tests.test_mlab.test_rec2csv_bad_shape ... ok matplotlib.tests.test_mlab.test_prctile ... ok matplotlib.tests.test_transforms.test_Affine2D_from_values ... ok matplotlib.tests.test_axes.test_arc_ellipse.test ... ok matplotlib.tests.test_axes.test_arc_ellipse.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_axes.test_arc_ellipse.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_axes.test_axhspan_epoch.test ... ok matplotlib.tests.test_axes.test_axhspan_epoch.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_axes.test_axhspan_epoch.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_axes.test_axvspan_epoch.test ... ok matplotlib.tests.test_axes.test_axvspan_epoch.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_axes.test_axvspan_epoch.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_axes.test_basic_annotate.test ... ok matplotlib.tests.test_axes.test_basic_annotate.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_axes.test_basic_annotate.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_axes.test_canonical.test ... ok matplotlib.tests.test_axes.test_canonical.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_axes.test_canonical.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_axes.test_const_xy.test ... ok matplotlib.tests.test_axes.test_const_xy.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_axes.test_const_xy.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_axes.test_fill_between_interpolate.test ... ok matplotlib.tests.test_axes.test_fill_between_interpolate.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_axes.test_fill_between_interpolate.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_axes.test_fill_units.test ... ok matplotlib.tests.test_axes.test_fill_units.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_axes.test_fill_units.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_axes.test_formatter_ticker.test ... ok matplotlib.tests.test_axes.test_formatter_ticker.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_axes.test_formatter_ticker.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_axes.test_formatter_ticker.test ... ok matplotlib.tests.test_axes.test_formatter_ticker.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_axes.test_formatter_ticker.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_axes.test_formatter_ticker.test ... ok matplotlib.tests.test_axes.test_formatter_ticker.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_axes.test_formatter_ticker.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_axes.test_formatter_ticker.test ... ok matplotlib.tests.test_axes.test_formatter_ticker.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_axes.test_formatter_ticker.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_axes.test_formatter_ticker.test ... ok matplotlib.tests.test_axes.test_formatter_ticker.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_axes.test_formatter_ticker.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_axes.test_hexbin_extent.test ... ok matplotlib.tests.test_axes.test_hexbin_extent.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_axes.test_hexbin_extent.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_axes.test_imshow.test ... ok matplotlib.tests.test_axes.test_imshow.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_axes.test_imshow.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_axes.test_imshow_clip.test ... ok matplotlib.tests.test_axes.test_imshow_clip.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_axes.test_imshow_clip.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_axes.test_markevery.test ... ok matplotlib.tests.test_axes.test_markevery.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_axes.test_markevery.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_axes.test_markevery_line.test ... ok matplotlib.tests.test_axes.test_markevery_line.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_axes.test_markevery_line.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_axes.test_nonfinite_limits.test ... ok matplotlib.tests.test_axes.test_nonfinite_limits.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_axes.test_nonfinite_limits.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_axes.test_pcolormesh.test ... ok matplotlib.tests.test_axes.test_pcolormesh.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_axes.test_pcolormesh.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_axes.test_polar_annotations.test ... ok matplotlib.tests.test_axes.test_polar_annotations.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_axes.test_polar_annotations.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_axes.test_polar_coord_annotations.test ... ok matplotlib.tests.test_axes.test_polar_coord_annotations.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_axes.test_polar_coord_annotations.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_axes.test_polar_rmin.test ... ok matplotlib.tests.test_axes.test_polar_rmin.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_axes.test_polar_rmin.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_axes.test_polar_theta_position.test ... ok matplotlib.tests.test_axes.test_polar_theta_position.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_axes.test_polar_theta_position.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_axes.test_polar_units.test ... ok matplotlib.tests.test_axes.test_polar_units.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_axes.test_polar_units.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_axes.test_polar_units.test ... ok matplotlib.tests.test_axes.test_polar_units.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_axes.test_polar_units.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_axes.test_polar_wrap.test ... ok matplotlib.tests.test_axes.test_polar_wrap.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_axes.test_polar_wrap.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_axes.test_polar_wrap.test ... ok matplotlib.tests.test_axes.test_polar_wrap.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_axes.test_polar_wrap.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_axes.test_polycollection_joinstyle.test ... ok matplotlib.tests.test_axes.test_polycollection_joinstyle.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_axes.test_polycollection_joinstyle.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_axes.test_shaped_data.test ... ok matplotlib.tests.test_axes.test_shaped_data.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_axes.test_shaped_data.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_axes.test_single_date.test ... ok matplotlib.tests.test_axes.test_single_date.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_axes.test_single_date.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_axes.test_single_point.test ... ok matplotlib.tests.test_axes.test_single_point.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_axes.test_single_point.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_axes.test_symlog.test ... ok matplotlib.tests.test_axes.test_symlog.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_axes.test_symlog.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_axes.test_symlog2.test ... ok matplotlib.tests.test_axes.test_symlog2.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_axes.test_symlog2.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_axes.test_units_strings.test ... ok matplotlib.tests.test_axes.test_units_strings.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_axes.test_units_strings.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_figure.test_figure.test ... ok matplotlib.tests.test_figure.test_figure.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_figure.test_figure.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_figure.test_figure_label.test ... ok matplotlib.tests.test_dates.test_DateFormatter.test ... ok matplotlib.tests.test_dates.test_DateFormatter.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_dates.test_DateFormatter.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_dates.test_RRuleLocator.test ... ok matplotlib.tests.test_dates.test_RRuleLocator.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_dates.test_RRuleLocator.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_dates.test_date_axhline.test ... ok matplotlib.tests.test_dates.test_date_axhline.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_dates.test_date_axhline.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_dates.test_date_axhspan.test ... ok matplotlib.tests.test_dates.test_date_axhspan.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_dates.test_date_axhspan.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_dates.test_date_axvline.test ... ok matplotlib.tests.test_dates.test_date_axvline.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_dates.test_date_axvline.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_dates.test_date_axvspan.test ... ok matplotlib.tests.test_dates.test_date_axvspan.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_dates.test_date_axvspan.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_dates.test_date_empty.test ... ok matplotlib.tests.test_dates.test_date_empty.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_dates.test_date_empty.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_dates.test_empty_date_with_year_formatter.test ... KNOWNFAIL: Test known to fail matplotlib.tests.test_dates.test_too_many_date_ticks.test ... ok This test should check if drange works as expected, and if all the rounding errors ... ok matplotlib.tests.test_spines.test_spines_axes_positions.test ... ok matplotlib.tests.test_spines.test_spines_axes_positions.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_spines.test_spines_axes_positions.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_image.test_figimage.test ... ok matplotlib.tests.test_image.test_figimage.test ... ok matplotlib.tests.test_image.test_image_clip.test ... ok matplotlib.tests.test_image.test_image_clip.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_image.test_image_clip.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_image.test_image_interps.test ... ok matplotlib.tests.test_image.test_image_interps.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_image.test_image_interps.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_image.test_image_python_io.test ... ok matplotlib.tests.test_image.test_imshow.test ... ok matplotlib.tests.test_image.test_imshow.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_image.test_imshow.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_image.test_interp_nearest_vs_none.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_image.test_interp_nearest_vs_none.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_image.test_imsave ... ok matplotlib.tests.test_simplification.test_clipper.test ... ok matplotlib.tests.test_simplification.test_clipper.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_simplification.test_clipper.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_simplification.test_clipping.test ... ok matplotlib.tests.test_simplification.test_clipping.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_simplification.test_clipping.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_simplification.test_diamond.test ... ok matplotlib.tests.test_simplification.test_diamond.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_simplification.test_diamond.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_simplification.test_fft_peaks.test ... ok matplotlib.tests.test_simplification.test_fft_peaks.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_simplification.test_fft_peaks.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_simplification.test_hatch.test ... ok matplotlib.tests.test_simplification.test_hatch.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_simplification.test_hatch.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_simplification.test_noise.test ... ok matplotlib.tests.test_simplification.test_overflow.test ... ok matplotlib.tests.test_simplification.test_overflow.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_simplification.test_overflow.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_simplification.test_para_equal_perp.test ... ok matplotlib.tests.test_simplification.test_para_equal_perp.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_simplification.test_para_equal_perp.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_simplification.test_simplify_curve.test ... ok matplotlib.tests.test_simplification.test_simplify_curve.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_simplification.test_simplify_curve.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_simplification.test_sine_plus_noise.test ... ok matplotlib.tests.test_simplification.test_start_with_moveto.test ... ok matplotlib.tests.test_simplification.test_throw_rendering_complexity_exceeded.test ... ok matplotlib.tests.test_mathtext.mathfont_cm_00_test.test ... ok matplotlib.tests.test_mathtext.mathfont_cm_01_test.test ... ok matplotlib.tests.test_mathtext.mathfont_cm_02_test.test ... ok matplotlib.tests.test_mathtext.mathfont_cm_03_test.test ... ok matplotlib.tests.test_mathtext.mathfont_cm_04_test.test ... ok matplotlib.tests.test_mathtext.mathfont_cm_05_test.test ... ok matplotlib.tests.test_mathtext.mathfont_cm_06_test.test ... ok matplotlib.tests.test_mathtext.mathfont_cm_07_test.test ... ok matplotlib.tests.test_mathtext.mathfont_cm_08_test.test ... ok matplotlib.tests.test_mathtext.mathfont_cm_09_test.test ... ok matplotlib.tests.test_mathtext.mathfont_cm_10_test.test ... ok matplotlib.tests.test_mathtext.mathfont_cm_11_test.test ... ok matplotlib.tests.test_mathtext.mathfont_cm_12_test.test ... ok matplotlib.tests.test_mathtext.mathfont_cm_13_test.test ... ok matplotlib.tests.test_mathtext.mathfont_cm_14_test.test ... ok matplotlib.tests.test_mathtext.mathfont_cm_15_test.test ... ok matplotlib.tests.test_mathtext.mathfont_cm_16_test.test ... ok matplotlib.tests.test_mathtext.mathfont_cm_17_test.test ... ok matplotlib.tests.test_mathtext.mathfont_cm_18_test.test ... ok matplotlib.tests.test_mathtext.mathfont_cm_19_test.test ... ok matplotlib.tests.test_mathtext.mathfont_cm_20_test.test ... ok matplotlib.tests.test_mathtext.mathfont_cm_21_test.test ... ok matplotlib.tests.test_mathtext.mathfont_cm_22_test.test ... ok matplotlib.tests.test_mathtext.mathfont_cm_23_test.test ... ok matplotlib.tests.test_mathtext.mathfont_cm_24_test.test ... ok matplotlib.tests.test_mathtext.mathfont_cm_25_test.test ... ok matplotlib.tests.test_mathtext.mathfont_cm_26_test.test ... ok matplotlib.tests.test_mathtext.mathfont_cm_27_test.test ... ok matplotlib.tests.test_mathtext.mathfont_cm_28_test.test ... ok matplotlib.tests.test_mathtext.mathfont_cm_29_test.test ... ok matplotlib.tests.test_mathtext.mathfont_cm_30_test.test ... ok matplotlib.tests.test_mathtext.mathfont_cm_31_test.test ... ok matplotlib.tests.test_mathtext.mathfont_cm_32_test.test ... ok matplotlib.tests.test_mathtext.mathfont_cm_33_test.test ... ok matplotlib.tests.test_mathtext.mathfont_cm_34_test.test ... ok matplotlib.tests.test_mathtext.mathfont_cm_35_test.test ... ok matplotlib.tests.test_mathtext.mathfont_cm_36_test.test ... ok matplotlib.tests.test_mathtext.mathfont_cm_37_test.test ... ok matplotlib.tests.test_mathtext.mathfont_cm_38_test.test ... ok matplotlib.tests.test_mathtext.mathfont_cm_39_test.test ... ok matplotlib.tests.test_mathtext.mathfont_cm_40_test.test ... ok matplotlib.tests.test_mathtext.mathfont_cm_41_test.test ... ok matplotlib.tests.test_mathtext.mathfont_cm_42_test.test ... ok matplotlib.tests.test_mathtext.mathfont_cm_43_test.test ... ok matplotlib.tests.test_mathtext.mathfont_cm_44_test.test ... ok matplotlib.tests.test_mathtext.mathfont_cm_45_test.test ... ok matplotlib.tests.test_mathtext.mathfont_cm_46_test.test ... ok matplotlib.tests.test_mathtext.mathfont_cm_47_test.test ... ok matplotlib.tests.test_mathtext.mathfont_cm_48_test.test ... ok matplotlib.tests.test_mathtext.mathfont_cm_49_test.test ... ok matplotlib.tests.test_mathtext.mathfont_cm_50_test.test ... ok matplotlib.tests.test_mathtext.mathfont_cm_51_test.test ... ok matplotlib.tests.test_mathtext.mathfont_cm_52_test.test ... ok matplotlib.tests.test_mathtext.mathfont_cm_53_test.test ... ok matplotlib.tests.test_mathtext.mathfont_cm_54_test.test ... ok matplotlib.tests.test_mathtext.mathfont_cm_55_test.test ... ok matplotlib.tests.test_mathtext.mathfont_cm_56_test.test ... ok matplotlib.tests.test_mathtext.mathfont_cm_57_test.test ... ok matplotlib.tests.test_mathtext.mathfont_cm_58_test.test ... ok matplotlib.tests.test_mathtext.mathfont_cm_59_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stix_00_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stix_01_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stix_02_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stix_03_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stix_04_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stix_05_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stix_06_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stix_07_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stix_08_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stix_09_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stix_10_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stix_11_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stix_12_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stix_13_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stix_14_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stix_15_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stix_16_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stix_17_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stix_18_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stix_19_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stix_20_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stix_21_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stix_22_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stix_23_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stix_24_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stix_25_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stix_26_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stix_27_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stix_28_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stix_29_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stix_30_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stix_31_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stix_32_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stix_33_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stix_34_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stix_35_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stix_36_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stix_37_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stix_38_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stix_39_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stix_40_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stix_41_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stix_42_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stix_43_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stix_44_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stix_45_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stix_46_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stix_47_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stix_48_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stix_49_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stix_50_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stix_51_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stix_52_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stix_53_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stix_54_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stix_55_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stix_56_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stix_57_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stix_58_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stix_59_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stixsans_00_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stixsans_01_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stixsans_02_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stixsans_03_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stixsans_04_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stixsans_05_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stixsans_06_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stixsans_07_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stixsans_08_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stixsans_09_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stixsans_10_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stixsans_11_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stixsans_12_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stixsans_13_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stixsans_14_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stixsans_15_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stixsans_16_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stixsans_17_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stixsans_18_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stixsans_19_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stixsans_20_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stixsans_21_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stixsans_22_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stixsans_23_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stixsans_24_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stixsans_25_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stixsans_26_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stixsans_27_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stixsans_28_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stixsans_29_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stixsans_30_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stixsans_31_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stixsans_32_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stixsans_33_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stixsans_34_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stixsans_35_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stixsans_36_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stixsans_37_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stixsans_38_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stixsans_39_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stixsans_40_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stixsans_41_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stixsans_42_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stixsans_43_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stixsans_44_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stixsans_45_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stixsans_46_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stixsans_47_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stixsans_48_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stixsans_49_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stixsans_50_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stixsans_51_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stixsans_52_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stixsans_53_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stixsans_54_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stixsans_55_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stixsans_56_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stixsans_57_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stixsans_58_test.test ... ok matplotlib.tests.test_mathtext.mathfont_stixsans_59_test.test ... ok matplotlib.tests.test_mathtext.mathtext_cm_00_test.test ... ok matplotlib.tests.test_mathtext.mathtext_cm_00_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_cm_00_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_cm_01_test.test ... ok matplotlib.tests.test_mathtext.mathtext_cm_01_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_cm_01_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_cm_02_test.test ... ok matplotlib.tests.test_mathtext.mathtext_cm_02_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_cm_02_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_cm_03_test.test ... ok matplotlib.tests.test_mathtext.mathtext_cm_03_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_cm_03_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_cm_04_test.test ... ok matplotlib.tests.test_mathtext.mathtext_cm_04_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_cm_04_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_cm_05_test.test ... ok matplotlib.tests.test_mathtext.mathtext_cm_05_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_cm_05_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_cm_06_test.test ... ok matplotlib.tests.test_mathtext.mathtext_cm_06_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_cm_06_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_cm_07_test.test ... ok matplotlib.tests.test_mathtext.mathtext_cm_07_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_cm_07_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_cm_08_test.test ... ok matplotlib.tests.test_mathtext.mathtext_cm_08_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_cm_08_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_cm_09_test.test ... ok matplotlib.tests.test_mathtext.mathtext_cm_09_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_cm_09_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_cm_10_test.test ... ok matplotlib.tests.test_mathtext.mathtext_cm_10_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_cm_10_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_cm_11_test.test ... ok matplotlib.tests.test_mathtext.mathtext_cm_11_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_cm_11_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_cm_12_test.test ... ok matplotlib.tests.test_mathtext.mathtext_cm_12_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_cm_12_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_cm_13_test.test ... ok matplotlib.tests.test_mathtext.mathtext_cm_13_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_cm_13_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_cm_14_test.test ... ok matplotlib.tests.test_mathtext.mathtext_cm_14_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_cm_14_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_cm_15_test.test ... ok matplotlib.tests.test_mathtext.mathtext_cm_15_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_cm_15_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_cm_16_test.test ... ok matplotlib.tests.test_mathtext.mathtext_cm_16_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_cm_16_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_cm_17_test.test ... ok matplotlib.tests.test_mathtext.mathtext_cm_17_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_cm_17_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_cm_18_test.test ... ok matplotlib.tests.test_mathtext.mathtext_cm_18_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_cm_18_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_cm_19_test.test ... ok matplotlib.tests.test_mathtext.mathtext_cm_19_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_cm_19_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_cm_20_test.test ... ok matplotlib.tests.test_mathtext.mathtext_cm_20_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_cm_20_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_cm_21_test.test ... ok matplotlib.tests.test_mathtext.mathtext_cm_21_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_cm_21_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_cm_22_test.test ... ok matplotlib.tests.test_mathtext.mathtext_cm_22_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_cm_22_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_cm_23_test.test ... ok matplotlib.tests.test_mathtext.mathtext_cm_23_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_cm_23_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_cm_24_test.test ... ok matplotlib.tests.test_mathtext.mathtext_cm_24_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_cm_24_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_cm_25_test.test ... ok matplotlib.tests.test_mathtext.mathtext_cm_25_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_cm_25_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_cm_26_test.test ... ok matplotlib.tests.test_mathtext.mathtext_cm_26_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_cm_26_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_cm_27_test.test ... ok matplotlib.tests.test_mathtext.mathtext_cm_27_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_cm_27_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_cm_28_test.test ... ok matplotlib.tests.test_mathtext.mathtext_cm_28_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_cm_28_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_cm_29_test.test ... ok matplotlib.tests.test_mathtext.mathtext_cm_29_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_cm_29_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_cm_30_test.test ... ok matplotlib.tests.test_mathtext.mathtext_cm_30_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_cm_30_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_cm_31_test.test ... ok matplotlib.tests.test_mathtext.mathtext_cm_31_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_cm_31_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_cm_32_test.test ... ok matplotlib.tests.test_mathtext.mathtext_cm_32_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_cm_32_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_cm_33_test.test ... ok matplotlib.tests.test_mathtext.mathtext_cm_33_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_cm_33_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_cm_34_test.test ... ok matplotlib.tests.test_mathtext.mathtext_cm_34_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_cm_34_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_cm_35_test.test ... ok matplotlib.tests.test_mathtext.mathtext_cm_35_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_cm_35_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_cm_36_test.test ... ok matplotlib.tests.test_mathtext.mathtext_cm_36_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_cm_36_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_cm_37_test.test ... ok matplotlib.tests.test_mathtext.mathtext_cm_37_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_cm_37_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_cm_38_test.test ... ok matplotlib.tests.test_mathtext.mathtext_cm_38_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_cm_38_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_cm_39_test.test ... ok matplotlib.tests.test_mathtext.mathtext_cm_39_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_cm_39_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_cm_40_test.test ... ok matplotlib.tests.test_mathtext.mathtext_cm_40_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_cm_40_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_cm_41_test.test ... ok matplotlib.tests.test_mathtext.mathtext_cm_41_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_cm_41_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_cm_42_test.test ... ok matplotlib.tests.test_mathtext.mathtext_cm_42_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_cm_42_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_cm_43_test.test ... ok matplotlib.tests.test_mathtext.mathtext_cm_43_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_cm_43_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_cm_44_test.test ... ok matplotlib.tests.test_mathtext.mathtext_cm_44_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_cm_44_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_cm_45_test.test ... ok matplotlib.tests.test_mathtext.mathtext_cm_45_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_cm_45_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_cm_46_test.test ... ok matplotlib.tests.test_mathtext.mathtext_cm_46_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_cm_46_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_cm_47_test.test ... ok matplotlib.tests.test_mathtext.mathtext_cm_47_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_cm_47_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_cm_48_test.test ... ok matplotlib.tests.test_mathtext.mathtext_cm_48_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_cm_48_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_cm_49_test.test ... ok matplotlib.tests.test_mathtext.mathtext_cm_49_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_cm_49_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_cm_50_test.test ... ok matplotlib.tests.test_mathtext.mathtext_cm_50_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_cm_50_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_cm_51_test.test ... ok matplotlib.tests.test_mathtext.mathtext_cm_51_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_cm_51_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_cm_52_test.test ... ok matplotlib.tests.test_mathtext.mathtext_cm_52_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_cm_52_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_cm_53_test.test ... ok matplotlib.tests.test_mathtext.mathtext_cm_53_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_cm_53_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_cm_54_test.test ... ok matplotlib.tests.test_mathtext.mathtext_cm_54_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_cm_54_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_cm_55_test.test ... ok matplotlib.tests.test_mathtext.mathtext_cm_55_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_cm_55_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_cm_56_test.test ... ok matplotlib.tests.test_mathtext.mathtext_cm_56_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_cm_56_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_cm_57_test.test ... ok matplotlib.tests.test_mathtext.mathtext_cm_57_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_cm_57_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_cm_58_test.test ... ok matplotlib.tests.test_mathtext.mathtext_cm_58_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_cm_58_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_cm_59_test.test ... ok matplotlib.tests.test_mathtext.mathtext_cm_59_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_cm_59_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_cm_60_test.test ... ok matplotlib.tests.test_mathtext.mathtext_cm_60_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_cm_60_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_cm_61_test.test ... ok matplotlib.tests.test_mathtext.mathtext_cm_61_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_cm_61_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_cm_62_test.test ... ok matplotlib.tests.test_mathtext.mathtext_cm_62_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_cm_62_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_cm_63_test.test ... ok matplotlib.tests.test_mathtext.mathtext_cm_63_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_cm_63_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_cm_64_test.test ... ok matplotlib.tests.test_mathtext.mathtext_cm_64_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_cm_64_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_cm_65_test.test ... ok matplotlib.tests.test_mathtext.mathtext_cm_65_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_cm_65_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_stix_00_test.test ... ok matplotlib.tests.test_mathtext.mathtext_stix_00_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_stix_00_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_stix_01_test.test ... ok matplotlib.tests.test_mathtext.mathtext_stix_01_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_stix_01_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_stix_02_test.test ... ok matplotlib.tests.test_mathtext.mathtext_stix_02_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_stix_02_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_stix_03_test.test ... ok matplotlib.tests.test_mathtext.mathtext_stix_03_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_stix_03_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_stix_04_test.test ... ok matplotlib.tests.test_mathtext.mathtext_stix_04_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_stix_04_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_stix_05_test.test ... ok matplotlib.tests.test_mathtext.mathtext_stix_05_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_stix_05_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_stix_06_test.test ... ok matplotlib.tests.test_mathtext.mathtext_stix_06_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_stix_06_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_stix_07_test.test ... ok matplotlib.tests.test_mathtext.mathtext_stix_07_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_stix_07_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_stix_08_test.test ... ok matplotlib.tests.test_mathtext.mathtext_stix_08_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_stix_08_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_stix_09_test.test ... ok matplotlib.tests.test_mathtext.mathtext_stix_09_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_stix_09_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_stix_10_test.test ... ok matplotlib.tests.test_mathtext.mathtext_stix_10_test.test ... KNOWNFAIL: Cannot compare pdf files on this system matplotlib.tests.test_mathtext.mathtext_stix_10_test.test ... KNOWNFAIL: Cannot compare svg files on this system matplotlib.tests.test_mathtext.mathtext_stix_11_test.test ... ERROR Failure: IOError ([Errno 24] Too many open files: 'C:\\Python27\\lib\\site-packages\\matplotlib\\tests\\baseline_images\\test_mathtext\\mathtext_stix_11.pdf') . .. ERROR Failure: IOError ([Errno 24] Too many open files: 'C:\\Python27\\lib\\site-packages\\matplotlib\\tests\\baseline_images\\test_mathtext\\mathtext_stix_12.png') . .. ERROR Failure: IOError ([Errno 24] Too many open files: 'C:\\Python27\\lib\\site-packages\\matplotlib\\tests\\baseline_images\\test_mathtext\\mathtext_stix_13.png') . .. ERROR Failure: IOError ([Errno 24] Too many open files: 'C:\\Python27\\lib\\site-packages\\matplotlib\\tests\\baseline_images\\test_mathtext\\mathtext_stix_14.png') . .. ERROR Failure: IOError ([Errno 24] Too many open files: 'C:\\Python27\\lib\\site-packages\\matplotlib\\tests\\baseline_images\\test_mathtext\\mathtext_stix_15.png') . .. ERROR Failure: IOError ([Errno 24] Too many open files: 'C:\\Python27\\lib\\site-packages\\matplotlib\\tests\\baseline_images\\test_mathtext\\mathtext_stix_16.png') . .. ERROR Failure: IOError ([Errno 24] Too many open files: 'C:\\Python27\\lib\\site-packages\\matplotlib\\tests\\baseline_images\\test_mathtext\\mathtext_stix_17.png') . .. ERROR Failure: IOError ([Errno 24] Too many open files: 'C:\\Python27\\lib\\site-packages\\matplotlib\\tests\\baseline_images\\test_mathtext\\mathtext_stix_18.png') . .. ERROR Failure: IOError ([Errno 24] Too many open files: 'C:\\Python27\\lib\\site-packages\\matplotlib\\tests\\baseline_images\\test_mathtext\\mathtext_stix_19.png') . .. ERROR Failure: IOError ([Errno 24] Too many open files: 'C:\\Python27\\lib\\site-packages\\matplotlib\\tests\\baseline_images\\test_mathtext\\mathtext_stix_20.png') . .. ERROR Failure: IOError ([Errno 24] Too many open files: 'C:\\Python27\\lib\\site-packages\\matplotlib\\tests\\baseline_images\\test_mathtext\\mathtext_stix_21.png') . .. ERROR Failure: IOError ([Errno 24] Too many open files: 'C:\\Python27\\lib\\site-packages\\matplotlib\\tests\\baseline_images\\test_mathtext\\mathtext_stix_22.png') . .. ERROR Failure: IOError ([Errno 24] Too many open files: 'C:\\Python27\\lib\\site-packages\\matplotlib\\tests\\baseline_images\\test_mathtext\\mathtext_stix_23.png') . .. ERROR Failure: IOError ([Errno 24] Too many open files: 'C:\\Python27\\lib\\site-packages\\matplotlib\\tests\\baseline_images\\test_mathtext\\mathtext_stix_24.png') . .. ERROR Failure: IOError ([Errno 24] Too many open files: 'C:\\Python27\\lib\\site-packages\\matplotlib\\tests\\baseline_images\\test_mathtext\\mathtext_stix_25.png') . .. ERROR Failure: IOError ([Errno 24] Too many open files: 'C:\\Python27\\lib\\site-packages\\matplotlib\\tests\\baseline_images\\test_mathtext\\mathtext_stix_26.png') . .. ERROR Failure: IOError ([Errno 24] Too many open files: 'C:\\Python27\\lib\\site-packages\\matplotlib\\tests\\baseline_images\\test_mathtext\\mathtext_stix_27.png') . .. ERROR Failure: IOError ([Errno 24] Too many open files: 'C:\\Python27\\lib\\site-packages\\matplotlib\\tests\\baseline_images\\test_mathtext\\mathtext_stix_28.png') . .. ERROR Failure: IOError ([Errno 24] Too many open files: 'C:\\Python27\\lib\\site-packages\\matplotlib\\tests\\baseline_images\\test_mathtext\\mathtext_stix_29.png') . .. ERROR Failure: IOError ([Errno 24] Too many open files: 'C:\\Python27\\lib\\site-packages\\matplotlib\\tests\\baseline_images\\test_mathtext\\mathtext_stix_30.png') . .. ERROR Failure: IOError ([Errno 24] Too many open files: 'C:\\Python27\\lib\\site-packages\\matplotlib\\tests\\baseline_images\\test_mathtext\\mathtext_stix_31.png') . .. ERROR Failure: IOError ([Errno 24] Too many open files: 'C:\\Python27\\lib\\site-packages\\matplotlib\\tests\\baseline_images\\test_mathtext\\mathtext_stix_32.png') . .. ERROR Failure: IOError ([Errno 24] Too many open files: 'C:\\Python27\\lib\\site-packages\\matplotlib\\tests\\baseline_images\\test_mathtext\\mathtext_stix_33.png') . .. ERROR Failure: IOError ([Errno 24] Too many open files: 'C:\\Python27\\lib\\site-packages\\matplotlib\\tests\\baseline_images\\test_mathtext\\mathtext_stix_34.png') . .. ERROR Failure: IOError ([Errno 24] Too many open files: 'C:\\Python27\\lib\\site-packages\\matplotlib\\tests\\baseline_images\\test_mathtext\\mathtext_stix_35.png') . .. ERROR Failure: IOError ([Errno 24] Too many open files: 'C:\\Python27\\lib\\site-packages\\matplotlib\\tests\\baseline_images\\test_mathtext\\mathtext_stix_36.png') . .. ERROR Failure: IOError ([Errno 24] Too many open files: 'C:\\Python27\\lib\\site-packages\\matplotlib\\tests\\baseline_images\\test_mathtext\\mathtext_stix_37.png') . .. ERROR Failure: IOError ([Errno 24] Too many open files: 'C:\\Python27\\lib\\site-packages\\matplotlib\\tests\\baseline_images\\test_mathtext\\mathtext_stix_38.png') . .. ERROR Failure: IOError ([Errno 24] Too many open files: 'C:\\Python27\\lib\\site-packages\\matplotlib\\tests\\baseline_images\\test_mathtext\\mathtext_stix_39.png') . .. ERROR Failure: IOError ([Errno 24] Too many open files: 'C:\\Python27\\lib\\site-packages\\matplotlib\\tests\\baseline_images\\test_mathtext\\mathtext_stix_40.png') . .. ERROR Failure: IOError ([Errno 24] Too many open files: 'C:\\Python27\\lib\\site-packages\\matplotlib\\tests\\baseline_images\\test_mathtext\\mathtext_stix_41.png') . .. ERROR Failure: IOError ([Errno 24] Too many open files: 'C:\\Python27\\lib\\site-packages\\matplotlib\\tests\\baseline_images\\test_mathtext\\mathtext_stix_42.png') . .. ERROR Failure: IOError ([Errno 24] Too many open files: 'C:\\Python27\\lib\\site-packages\\matplotlib\\tests\\baseline_images\\test_mathtext\\mathtext_stix_43.png') . .. ERROR Failure: IOError ([Errno 24] Too many open files: 'C:\\Python27\\lib\\site-packages\\matplotlib\\tests\\baseline_images\\test_mathtext\\mathtext_stix_44.png') . .. ERROR Failure: IOError ([Errno 24] Too many open files: 'C:\\Python27\\lib\\site-packages\\matplotlib\\tests\\baseline_images\\test_mathtext\\mathtext_stix_45.png') . .. ERROR Failure: IOError ([Errno 24] Too many open files: 'C:\\Python27\\lib\\site-packages\\matplotlib\\tests\\baseline_images\\test_mathtext\\mathtext_stix_46.png') . .. ERROR Failure: IOError ([Errno 24] Too many open files: 'C:\\Python27\\lib\\site-packages\\matplotlib\\tests\\baseline_images\\test_mathtext\\mathtext_stix_47.png') . .. ERROR Failure: IOError ([Errno 24] Too many open files: 'C:\\Python27\\lib\\site-packages\\matplotlib\\tests\\baseline_images\\test_mathtext\\mathtext_stix_48.png') . .. ERROR Failure: IOError ([Errno 24] Too many open files: 'C:\\Python27\\lib\\site-packages\\matplotlib\\tests\\baseline_images\\test_mathtext\\mathtext_stix_49.png') . .. ERROR Failure: IOError ([Errno 24] Too many open files: 'C:\\Python27\\lib\\site-packages\\matplotlib\\tests\\baseline_images\\test_mathtext\\mathtext_stix_50.png') . .. ERROR Failure: IOError ([Errno 24] Too many open files: 'C:\\Python27\\lib\\site-packages\\matplotlib\\tests\\baseline_images\\test_mathtext\\mathtext_stix_51.png') . .. ERROR Failure: IOError ([Errno 24] Too many open files: 'C:\\Python27\\lib\\site-packages\\matplotlib\\tests\\baseline_images\\test_mathtext\\mathtext_stix_52.png') . .. ERROR Failure: IOError ([Errno 24] Too many open files: 'C:\\Python27\\lib\\site-packages\\matplotlib\\tests\\baseline_images\\test_mathtext\\mathtext_stix_53.png') . .. ERROR Failure: IOError ([Errno 24] Too many open files: 'C:\\Python27\\lib\\site-packages\\matplotlib\\tests\\baseline_images\\test_mathtext\\mathtext_stix_54.png') . .. ERROR Failure: IOError ([Errno 24] Too many open files: 'C:\\Python27\\lib\\site-packages\\matplotlib\\tests\\baseline_images\\test_mathtext\\mathtext_stix_55.png') . .. ERROR Failure: IOError ([Errno 24] Too many open files: 'C:\\Python27\\lib\\site-packages\\matplotlib\\tests\\baseline_images\\test_mathtext\\mathtext_stix_56.png') . .. ERROR Failure: IOError ([Errno 24] Too many open files: 'C:\\Python27\\lib\\site-packages\\matplotlib\\tests\\baseline_images\\test_mathtext\\mathtext_stix_57.png') . .. ERROR Failure: IOError ([Errno 24] Too many open files: 'C:\\Python27\\lib\\site-packages\\matplotlib\\tests\\baseline_images\\test_mathtext\\mathtext_stix_58.png') . .. ERROR Failure: IOError ([Errno 24] Too many open files: 'C:\\Python27\\lib\\site-packages\\matplotlib\\tests\\baseline_images\\test_mathtext\\mathtext_stix_59.png') . .. ERROR Failure: IOError ([Errno 24] Too many open files: 'C:\\Python27\\lib\\site-packages\\matplotlib\\tests\\baseline_images\\test_mathtext\\mathtext_stix_60.png') . .. ERROR Failure: IOError ([Errno 24] Too many open files: 'C:\\Python27\\lib\\site-packages\\matplotlib\\tests\\baseline_images\\test_mathtext\\mathtext_stix_61.png') . .. ERROR Failure: IOError ([Errno 24] Too many open files: 'C:\\Python27\\lib\\site-packages\\matplotlib\\tests\\baseline_images\\test_mathtext\\mathtext_stix_62.png') . .. ERROR Failure: IOError ([Errno 24] Too many open files: 'C:\\Python27\\lib\\site-packages\\matplotlib\\tests\\baseline_images\\test_mathtext\\mathtext_stix_63.png') . .. ERROR Failure: IOError ([Errno... [truncated message content] |
From: Sandro T. <mo...@de...> - 2012-03-26 06:40:30
|
On Fri, Mar 23, 2012 at 18:55, John Hunter <jd...@gm...> wrote: > On Fri, Mar 23, 2012 at 12:21 PM, Sandro Tosi <mo...@de...> wrote: >> >> >> I'll start testing debian packaging right away; for our package we >> also need the sampledata tarball: can I reuse the one for 1.1.0 or is >> a new one needed? >> > > You can use the same one -- because this is a bugfix release, we have not > introduced any new features, examples or data. Just bugfixes. Great! The only thing I've noticed is: - INSTALL contains a weird "numpy version |minimum_numpy_version|" probably a missing substitution? Other than that, the package was fine, and i've uploaded to Debian unstable. Cheers, -- Sandro Tosi (aka morph, morpheus, matrixhasu) My website: http://matrixhasu.altervista.org/ Me at Debian: http://wiki.debian.org/SandroTosi |
From: Sandro T. <mo...@de...> - 2012-03-26 06:39:54
|
Hi Derek, On Mon, Mar 26, 2012 at 02:50, Derek Homeier <de...@as...> wrote: > I was also curious if you had considered moving the docs to a separate package. > I will propose one for fink; yes, Debian has a separate package for documentation (since it requires to be build just on time, whilc mpl requires to be built on each architecture we support, so splitting the package results in a lot of saved space). JFYR this is the layout of packages in Debian: python-matplotlib - the python module python-matplotlib-data - mpl-data dir + sampeldata + config files + nib + fonts python-matplotlib-dbg - debug symbols for python extensions python-matplotlib-doc - all the built doc, in html and pdf formats Cheers, -- Sandro Tosi (aka morph, morpheus, matrixhasu) My website: http://matrixhasu.altervista.org/ Me at Debian: http://wiki.debian.org/SandroTosi |
From: Derek H. <de...@as...> - 2012-03-26 00:51:12
|
On 24.03.2012, at 8:16PM, Sandro Tosi wrote: > > to run tests I use: > > python -c "import matplotlib as m ; m.test(verbosity=1)" > Ah, thanks for the reminder; that looks much more comprehensive! Actually the fink testing command requires an exit value of 1 or higher to detect errors, so I am using something like "… r=m.test(verbosity=1); sys.exit(len(r.errors+r.failures))" >> I have another question - I am trying to build a fink package with the documentation >> and am wondering if "python make.py --small html" > > In debian I use: > > ./make.py --small all > >> actually has any effect? > > what do you mean? > >> This still creates more than 70 MB of documentation, 24 MB in the _images subdir >> alone, which increases the .deb size by a factor of ~2.5. How are you handling this >> for the Debian package? > > well, yes, the doc is huge (the debian package size is 52M compressed) > and that is good; --small helped reducing the package size, setting > > if small_docs: > options = "-D plot_formats=\"[('png', 80)]\"" > > which reduced the type and size of the output images. Indeed, I seemed to remember the regular output was not that much larger, but I must have missed all the hires.png and pdf images in the mpl_examples. They do account for additional 60-70 MB... I was also curious if you had considered moving the docs to a separate package. I will propose one for fink; since there probably more people are building their packages themselves, the savings in build time might already justify that. Cheers, Derek |
From: todd r. <tod...@gm...> - 2012-03-25 10:42:45
|
On Mon, Mar 19, 2012 at 10:08 PM, Pierre Raybaut <pie...@gm...> wrote: > Hi all, > > Is anyone interested in including the Matplotlib QtDesigner plugin > which I wrote for Python(x,y)? > > The code is quite simple and hasn't evolved for a while now (3 years) > but apparently it is still appreciated by users even outside > Python(x,y). > > Here are the two files which are necessary to make this plugin work: > http://code.google.com/p/pythonxy/source/browse/src/python/matplotlib/QtDesigner_Plugins/matplotlibwidget.py > http://code.google.com/p/pythonxy/source/browse/src/python/matplotlib/QtDesigner_Plugins/PyQt4/plugins/designer/python/matplotlibplugin.py > > The directory struture also has its importance: > http://code.google.com/p/pythonxy/source/browse/#hg%2Fsrc%2Fpython%2Fmatplotlib%2FQtDesigner_Plugins > > Cheers, > Pierre I have been looking at the matplotlib widget code. It is very helpful for putting a widget inside PyQt4 windows. However, it is lacking any signals and slots to let you easily connect other Qt4 widgets with the matplotlib one. Particularly in Qt Designer, using signals and slots to connect widgets together is very convenient. I am willing to implement signals and slots, but I need some advice on the best approach. So far I see three different approaches that may work: 1. The simplest is just to manually add slots for common commands in the widget. I would also probably add some signals for things like mouse clicks. However, this requires manually creating the signals and slots, and will break if matplotlib changes any of its api. I would also need to decide whether to use the matplotlib function naming rules or the Qt4 ones (or both, since I can give the same signal multiple names). 2. Integrate the signals and slots directly into matplotlib. This would probably involve somehow having matplotlib functions exposed as signals and/or slots, probably somewhere in the PyQt4/pyside backend. It would probably entail separating the PyQt4/pyside backend into a PyQt4/pyside widget and a PyQt4/pyside window that contains that widget. All the interaction between settings, buttons, etc would use signals and slots internally. Users could then use the widget in other contexts besides the window, and use the same signals and slots the window uses. This would also eliminate the need for a separate widget to be used for Qt Designer. It would still require manually specifying the signals and slots. I haven't looked in much detail, but this is probably not that much more difficult than 1. 3. Make PyQt4 backend use widgets for everything. Each object would have all of its functions exposed as signals and slots, and all would be usable in Qt Designer. If I understand it correctly, the PyQt4 backend uses Agg for the actual painting, so this would require implementing an entire new backend, so is probably not a good choice initially. Either approach would be |
From: Sandro T. <mo...@de...> - 2012-03-24 19:16:42
|
On Sat, Mar 24, 2012 at 18:13, Derek Homeier <de...@as...> wrote: > I used the 1.1.0 version to build with the fink Python installation on MaxOS X > and everything seems to work there, passing the tests at least (does pylab.test('full') > execute all tests? It seems a rather small number…). to run tests I use: python -c "import matplotlib as m ; m.test(verbosity=1)" > I have another question - I am trying to build a fink package with the documentation > and am wondering if "python make.py --small html" In debian I use: ./make.py --small all > actually has any effect? what do you mean? > This still creates more than 70 MB of documentation, 24 MB in the _images subdir > alone, which increases the .deb size by a factor of ~2.5. How are you handling this > for the Debian package? well, yes, the doc is huge (the debian package size is 52M compressed) and that is good; --small helped reducing the package size, setting if small_docs: options = "-D plot_formats=\"[('png', 80)]\"" which reduced the type and size of the output images. Cheers, -- Sandro Tosi (aka morph, morpheus, matrixhasu) My website: http://matrixhasu.altervista.org/ Me at Debian: http://wiki.debian.org/SandroTosi |
From: Derek H. <de...@as...> - 2012-03-24 17:14:16
|
Hi Sandro, > On Fri, Mar 23, 2012 at 03:18, John Hunter <jd...@gm...> wrote: >> The tarballs for the v1.1.1 release candidate 1 (rc1) are uploaded to and >> are available for testing and building binaries >> >> https://sourceforge.net/projects/matplotlib/files/matplotlib/matplotlib-1.1.1/ >> >> After the binaries are up, I'll send out a notice to the users list >> requesting wider testing, but intrepid developers can begin now. > > I'll start testing debian packaging right away; for our package we > also need the sampledata tarball: can I reuse the one for 1.1.0 or is > a new one needed? I used the 1.1.0 version to build with the fink Python installation on MaxOS X and everything seems to work there, passing the tests at least (does pylab.test('full') execute all tests? It seems a rather small number…). I have another question - I am trying to build a fink package with the documentation and am wondering if "python make.py --small html" actually has any effect? This still creates more than 70 MB of documentation, 24 MB in the _images subdir alone, which increases the .deb size by a factor of ~2.5. How are you handling this for the Debian package? Cheers, Derek |
From: John H. <jd...@gm...> - 2012-03-23 18:04:21
|
On Fri, Mar 23, 2012 at 12:55 PM, Russell E. Owen <ro...@uw...> wrote: > > I have uploaded the Mac builds (no Python 2.6 yet; do we really need > that?). They pass all unit tests and the 32-bit version seems to work > well with my software. > > Might be nice to upload some python2.6 builds for the actual release, but I don't see this as necessary for the testers since there are no important differences between 2.6 and 2.7 as far as v1.1.x is concerned. JDH |
From: John H. <jd...@gm...> - 2012-03-23 18:00:41
|
On Fri, Mar 23, 2012 at 12:55 PM, Russell E. Owen <ro...@uw...> wrote: > > The included pytz is outdated (and I did not bother to uprev it in the > binaries I uploaded); would somebody be willing to update that before we > cut the final releases, or is that considered too risky at this late > date? > > It feels too risky to me post-rc. How critical do you think the updates are? We are planning on moving our attention to a master release 1.2.x as soon as this is out, and we can update ahead of that. And for people who need the latest, they can always install their own. JDH |
From: John H. <jd...@gm...> - 2012-03-23 17:56:01
|
On Fri, Mar 23, 2012 at 12:21 PM, Sandro Tosi <mo...@de...> wrote: > > I'll start testing debian packaging right away; for our package we > also need the sampledata tarball: can I reuse the one for 1.1.0 or is > a new one needed? > > You can use the same one -- because this is a bugfix release, we have not introduced any new features, examples or data. Just bugfixes. JDH |
From: Russell E. O. <ro...@uw...> - 2012-03-23 17:55:40
|
In article <CAG...@ma...>, John Hunter <jd...@gm...> wrote: > On Mon, Mar 19, 2012 at 12:58 PM, John Hunter > <jd...@gm...> wrote: > > > I think we are pretty close to cleaning up issues and PRs related to > > v1.1.x, so I'd like to cut the release candidate this Thursday. Let's > > continue to hammer on closing open issues and pull requests, and flag > > anything that needs to be addressed before the release as > > "release_critical" in the issue tracker. If there are show stoppers I am > > not aware of, chime in. > > > > > The tarballs for the v1.1.1 release candidate 1 (rc1) are uploaded to and > are available for testing and building binaries > > > https://sourceforge.net/projects/matplotlib/files/matplotlib/matplotlib-1.1.1/ I have uploaded the Mac builds (no Python 2.6 yet; do we really need that?). They pass all unit tests and the 32-bit version seems to work well with my software. The included pytz is outdated (and I did not bother to uprev it in the binaries I uploaded); would somebody be willing to update that before we cut the final releases, or is that considered too risky at this late date? -- Russell |
From: Sandro T. <mo...@de...> - 2012-03-23 17:21:44
|
Hi John, On Fri, Mar 23, 2012 at 03:18, John Hunter <jd...@gm...> wrote: > The tarballs for the v1.1.1 release candidate 1 (rc1) are uploaded to and > are available for testing and building binaries > > https://sourceforge.net/projects/matplotlib/files/matplotlib/matplotlib-1.1.1/ > > After the binaries are up, I'll send out a notice to the users list > requesting wider testing, but intrepid developers can begin now. I'll start testing debian packaging right away; for our package we also need the sampledata tarball: can I reuse the one for 1.1.0 or is a new one needed? Cheers, -- Sandro Tosi (aka morph, morpheus, matrixhasu) My website: http://matrixhasu.altervista.org/ Me at Debian: http://wiki.debian.org/SandroTosi |
From: John H. <jd...@gm...> - 2012-03-23 14:06:37
|
On Thu, Mar 22, 2012 at 10:57 PM, Christoph Gohlke <cg...@uc...> wrote: > > > Windows binaries, including the test files, are at < > http://www.lfd.uci.edu/~**gohlke/pythonlibs/#matplotlib<http://www.lfd.uci.edu/~gohlke/pythonlibs/#matplotlib> > >**. > > All my attempts to upload the files to SF failed (no error report). > > I'll run tests later. > Hey Christoph, not sure why you are unable to upload, since I have you designated as a "release manager" on the sf site, but thanks for building these and I've uploaded these and they are good to go. |