SourceForge logo
SourceForge logo
Menu

matplotlib-devel — matplotlib developers

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
S M T W T F S






1
(1)
2
3
(4)
4
5
6
7
(1)
8
(3)
9
10
(1)
11
(2)
12
13
14
15
(1)
16
17
(4)
18
(9)
19
(11)
20
(1)
21
(1)
22
23
24
(2)
25
(1)
26
(2)
27
28
(2)
29
(4)
30
(3)






Showing 9 results of 9

From: Thomas K. <th...@kl...> - 2013年06月18日 23:40:27
On 19 June 2013 00:09, Fernando Perez <fpe...@gm...> wrote:
> I wish we could just fix this plugin issue.
When we drop support for Python 2.6, I think we can use the expectedFailure
mechanism included in unittest from 2.7 onwards. So long as nose recognises
that, we should be able to drop our copy of the KnownFailure plugin.
Thomas
From: Fernando P. <fpe...@gm...> - 2013年06月18日 23:18:39
Good point, I didn't know about that new mechanism.
I think we should keep 2.6 support for IPython 1.0, but drop it
afterwards. We can discuss that during the dev meeting...
Cheers,
f
On Tue, Jun 18, 2013 at 4:16 PM, Thomas Kluyver <th...@kl...> wrote:
> On 19 June 2013 00:09, Fernando Perez <fpe...@gm...> wrote:
>>
>> I wish we could just fix this plugin issue.
>
>
> When we drop support for Python 2.6, I think we can use the expectedFailure
> mechanism included in unittest from 2.7 onwards. So long as nose recognises
> that, we should be able to drop our copy of the KnownFailure plugin.
>
> Thomas
-- 
Fernando Perez (@fperez_org; http://fperez.org)
fperez.net-at-gmail: mailing lists only (I ignore this when swamped!)
fernando.perez-at-berkeley: contact me here for any direct mail
From: Fernando P. <fpe...@gm...> - 2013年06月18日 23:10:31
Hi Mike,
On Tue, Jun 18, 2013 at 3:37 PM, Michael Droettboom <md...@st...> wrote:
> This was an attempt to fix a bug that mpl's KnownFailure plugin wouldn't
> load when running tests directly using the nosetests commandline
> script. I see IPython has a testing wrapper script (iptest) -- is that
> in part to solve that problem?
Only in part. We wrote iptest because we need to start nose multiple
times in different subprocesses for each chunk of IPython, as trying
to load all of IPython into a single python process ends up producing
tears (conflicts between things that don't like to live together in
sys.modules like multiple gui toolkits, etc).
> In any case, the revert should be simple -- can you try commenting out
> the "entry_points" kwarg at the bottom of the setup.py script? (You'll
> probably need to blitz the matplotlib installation directory and `build`
> for good measure). I can't actually reproduce the bug myself, but I
> suspect that's because this is somewhat dependent on the order in which
> things are installed into the virtualenv or the phases of the moon...
Yup, problem gone. With this change:
((v1.3.0rc3))longs[matplotlib]> git diff
diff --git a/setup.py b/setup.py
index 5f1b561..b4d1763 100644
--- a/setup.py
+++ b/setup.py
@@ -230,9 +230,9 @@ if __name__ == '__main__':
 zip_safe=False,
 # Install our nose plugin so it will always be found
- entry_points={
- 'nose.plugins.0.10': [
- 'KnownFailure = matplotlib.testing.noseclasses:KnownFailure'
- ]
- },
+ # entry_points={
+ # 'nose.plugins.0.10': [
+ # 'KnownFailure = matplotlib.testing.noseclasses:KnownFailure'
+ # ]
+ # },
 )
I get as expected:
((v1.3.0rc3))longs[matplotlib]> iptest -vx IPython.core.tests.test_run
[...]
----------------------------------------------------------------------
Ran 23 tests in 2.277s
OK (KNOWNFAIL=1)
> If that works for you, we can just take that out and require testers to
> use our testing script (and unfortunately will have to make another
> release candidate).
Well, I wouldn't want to force mpl to have to ship a custom testing
script, that's kind of an ugly kludge that we live with but that is
really sub-optimal. I wish we could just fix this plugin issue. The
problem, I suspect, is the presence of multiple KnownFailure classes
in a way that trips an isisnstance() check somewhere.
Cheers,
f
From: Michael D. <md...@st...> - 2013年06月18日 22:52:21
This was an attempt to fix a bug that mpl's KnownFailure plugin wouldn't 
load when running tests directly using the nosetests commandline 
script. I see IPython has a testing wrapper script (iptest) -- is that 
in part to solve that problem?
In any case, the revert should be simple -- can you try commenting out 
the "entry_points" kwarg at the bottom of the setup.py script? (You'll 
probably need to blitz the matplotlib installation directory and `build` 
for good measure). I can't actually reproduce the bug myself, but I 
suspect that's because this is somewhat dependent on the order in which 
things are installed into the virtualenv or the phases of the moon...
If that works for you, we can just take that out and require testers to 
use our testing script (and unfortunately will have to make another 
release candidate).
Mike
On 06/18/2013 06:13 PM, Fernando Perez wrote:
> Hi Ben,
>
> On Tue, Jun 18, 2013 at 1:29 PM, Benjamin Root <ben...@ou...> wrote:
>
>> Does the same thing happen with the v1.3.x branch? You said you tested
>> master, but that isn't exactly the same as v1.3.x.
> I just tested with the v1.3.0rc3, and the problem is present there:
>
> ((v1.3.0rc3))longs[matplotlib]> iptest -vx IPython.core.tests.test_run
> Check that %run doesn't damage __builtins__ ... ok
> Check that the type of __builtins__ doesn't change with %run. ... ok
> Test that prompts correctly generate after %run ... ok
> Test that the option -p, which invokes the profiler, do not ... ok
> Test that namespace cleanup is not too aggressive GH-238 ... ERROR
>
> ======================================================================
> ERROR: Test that namespace cleanup is not too aggressive GH-238
> ----------------------------------------------------------------------
> Traceback (most recent call last):
> File "/usr/lib/python2.7/dist-packages/nose/case.py", line 197, in runTest
> self.test(*self.arg)
> File "/usr/lib/python2.7/dist-packages/numpy/testing/decorators.py",
> line 213, in knownfailer
> raise KnownFailureTest(msg)
> KnownFailureTest: This test is known to fail
>
> ----------------------------------------------------------------------
> Ran 5 tests in 0.006s
>
> FAILED (errors=1)
>
>
> Cheers,
>
> f
>
> ------------------------------------------------------------------------------
> This SF.net email is sponsored by Windows:
>
> Build for Windows Store.
>
> http://p.sf.net/sfu/windows-dev2dev
> _______________________________________________
> Matplotlib-devel mailing list
> Mat...@li...
> https://lists.sourceforge.net/lists/listinfo/matplotlib-devel
From: Fernando P. <fpe...@gm...> - 2013年06月18日 22:14:35
Hi Ben,
On Tue, Jun 18, 2013 at 1:29 PM, Benjamin Root <ben...@ou...> wrote:
> Does the same thing happen with the v1.3.x branch? You said you tested
> master, but that isn't exactly the same as v1.3.x.
I just tested with the v1.3.0rc3, and the problem is present there:
((v1.3.0rc3))longs[matplotlib]> iptest -vx IPython.core.tests.test_run
Check that %run doesn't damage __builtins__ ... ok
Check that the type of __builtins__ doesn't change with %run. ... ok
Test that prompts correctly generate after %run ... ok
Test that the option -p, which invokes the profiler, do not ... ok
Test that namespace cleanup is not too aggressive GH-238 ... ERROR
======================================================================
ERROR: Test that namespace cleanup is not too aggressive GH-238
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/usr/lib/python2.7/dist-packages/nose/case.py", line 197, in runTest
 self.test(*self.arg)
 File "/usr/lib/python2.7/dist-packages/numpy/testing/decorators.py",
line 213, in knownfailer
 raise KnownFailureTest(msg)
KnownFailureTest: This test is known to fail
----------------------------------------------------------------------
Ran 5 tests in 0.006s
FAILED (errors=1)
Cheers,
f
From: Benjamin R. <ben...@ou...> - 2013年06月18日 20:29:44
On Tue, Jun 18, 2013 at 4:19 PM, Fernando Perez <fpe...@gm...>wrote:
> Hi folks,
>
> <snip>
>
> Since SciPy'13 is coming and I know Mike will be there, I'm happy to
> try to debug this face to face in Austin. I just wanted to put it on
> your radar, in case it's an easy fix (esp. if it's one you can apply
> before 1.3.0 goes out).
>
> Cheers,
>
>
Fernando,
Does the same thing happen with the v1.3.x branch? You said you tested
master, but that isn't exactly the same as v1.3.x.
Cheers!
Ben Root
From: Fernando P. <fpe...@gm...> - 2013年06月18日 20:20:22
Hi folks,
I'm wondering if the following rings any bells for you... Right now,
on an ubuntu 13.04 machine, if I install mpl master (say to my home
directory), the IPython test suite fails here:
iptest -vx IPython.core.tests.test_run
...
======================================================================
ERROR: Test that namespace cleanup is not too aggressive GH-238
----------------------------------------------------------------------
Traceback (most recent call last):
 File "/usr/lib/python2.7/dist-packages/nose/case.py", line 197, in runTest
 self.test(*self.arg)
 File "/usr/lib/python2.7/dist-packages/numpy/testing/decorators.py",
line 213, in knownfailer
 raise KnownFailureTest(msg)
KnownFailureTest: This test is known to fail
If I uninstall mpl from master and revert to the system version
(1.2.1), then it's all OK. We'd seen this problem a few years ago,
but in that case it was the opposite: mpl master was OK and the issue
was mis-packaging by Ubuntu:
https://github.com/ipython/ipython/issues/823
https://bugs.launchpad.net/ubuntu/+source/matplotlib/+bug/871176
But now the problem appears to be caused by mpl master. Can you think
of any recent changes to mpl in how you load your nose plugins that
could be causing this?
Since SciPy'13 is coming and I know Mike will be there, I'm happy to
try to debug this face to face in Austin. I just wanted to put it on
your radar, in case it's an easy fix (esp. if it's one you can apply
before 1.3.0 goes out).
Cheers,
f
--
Fernando Perez (@fperez_org; http://fperez.org)
fperez.net-at-gmail: mailing lists only (I ignore this when swamped!)
fernando.perez-at-berkeley: contact me here for any direct mail
From: Michael D. <md...@st...> - 2013年06月18日 19:20:35
I have tagged a 1.3.0rc3 and uploaded a tarball to Sourceforge.
We may not get all the binaries up in the next little while, so I'll 
wait for those and then make an announcement on matplotlib-users. After 
a couple of weeks, assuming no serious problems, we'll be ready for 
1.3.0 final.
Thanks again to everyone for their help with this release!
Mike
On 06/17/2013 02:53 PM, Damon McDougall wrote:
>
>
>
> On Mon, Jun 17, 2013 at 9:50 AM, Michael Droettboom <md...@st... 
> <mailto:md...@st...>> wrote:
>
> We're a little behind schedule for 1.3.0 -- held up by the
> distribute/setuptools upgrade debacle. I'd like to put out a 1.3.0rc3
> late tonight or tomorrow, and hopefully get a final release out early
> next week in advance of Scipy if all goes well. Any objections?
>
>
> I'm too far behind on my email to be apprised of the state of 
> distribute vs setuptools. I trust your judgement :)
>
>
> Mike
>
>
>
> ------------------------------------------------------------------------------
> This SF.net email is sponsored by Windows:
>
> Build for Windows Store.
>
> http://p.sf.net/sfu/windows-dev2dev
> _______________________________________________
> Matplotlib-devel mailing list
> Mat...@li...
> <mailto:Mat...@li...>
> https://lists.sourceforge.net/lists/listinfo/matplotlib-devel
>
>
>
>
> -- 
> Damon McDougall
> http://www.damon-is-a-geek.com
> Institute for Computational Engineering Sciences
> 201 E. 24th St.
> Stop C0200
> The University of Texas at Austin
> Austin, TX 78712-1229
From: Michael D. <md...@st...> - 2013年06月18日 01:45:44
On 06/17/2013 02:10 PM, Benjamin Root wrote:
>
>
> In the meantime, a "bug" I have noticed. In the list of markers: 
> http://matplotlib.org/1.3.0/api/markers_api.html, we have things like 
> "TICKLEFT", "CARETUP" and such. These seem to be some sort of 
> placeholder for the numerical values and is quite confusing. I 
> suspect this has been this way for a while now.
Yes -- these are numeric enumerations defined in matplotlib.markers. 
That should be made clearer, or we should add string aliases for these 
things.
Mike

Showing 9 results of 9

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.
Thanks for helping keep SourceForge clean.
X





Briefly describe the problem (required):
Upload screenshot of ad (required):
Select a file, or drag & drop file here.
Screenshot instructions:

Click URL instructions:
Right-click on the ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)

More information about our ad policies

Ad destination/click URL:

AltStyle によって変換されたページ (->オリジナル) /