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

Showing results of 26

1 2 > >> (Page 1 of 2)
From: Eric F. <ef...@ha...> - 2011年09月18日 23:32:58
On 09/18/2011 11:15 AM, John Hunter wrote:
> On Sun, Sep 18, 2011 at 4:02 PM, Eric Firing<ef...@ha...> wrote:
>> There is a way to deal with this now: define our own copyto which uses
>> np.copyto if it exists, and falls back on putnav otherwise. I think this
>> can be done with reasonable safety and no loss of performance. The only
>> question is where to put our copyto. I think a new compat.py would make
>> sense as a home for this sort of version compatibility interface code. We
>> may need a lot more in the future as numpy evolves.
>
> We used to put these in cbook I believe; eg functions that existed in
> python2.3 that we wanted to use but weren't defined in python2.2 which
> we supported. We could prefix them with a leading underscore to steer
> users away from them
>
> def _copyto(...):
> # temporary function to use numpy's copyto if it is defined, else
> putmask; this function will be deprecated when we support only numpy
> 2.0 and later
> ...
>
> I'd be in favor of doing this, because deprecations warnings are a nuisance.
>
> JDH
See
https://github.com/matplotlib/matplotlib/pull/480
Eric
From: Eric F. <ef...@ha...> - 2011年09月18日 21:30:11
On 09/18/2011 09:30 AM, Christoph Gohlke wrote:
> Hello,
>
> matplotlib uses int(x*255) or np.array(x*255, np.uint8) to quantize
> normalized floating point numbers x in the range [0.0 to 1.0] to
> integers in the range [0 to 255]. This way only 1.0 is mapped to 255,
> not for example 0.999. Is this really intended or would not the largest
> floating point number below 256.0 be a better scale factor than 255? The
> exact factor depends on the floating point precision (~255.999992 for
> np.float32, ~255.93 for np.float16).
>
> Christoph
Christoph,
It's a reasonable question; but do you have use cases in mind where it 
actually makes a difference?
The simple scaling with truncation is used in many places, both in the 
python and the c++ code.
Eric
From: Fernando P. <fpe...@gm...> - 2011年09月18日 21:19:05
On Sun, Sep 18, 2011 at 2:02 PM, Eric Firing <ef...@ha...> wrote:
> There is a way to deal with this now: define our own copyto which uses
> np.copyto if it exists, and falls back on putnav otherwise. I think
> this can be done with reasonable safety and no loss of performance. The
> only question is where to put our copyto. I think a new compat.py would
> make sense as a home for this sort of version compatibility interface
> code. We may need a lot more in the future as numpy evolves.
If you want to just silence this particular warning, it can be done
with this code:
import warnings
warnings.filterwarnings('ignore', 'putmask has been deprecated',
 DeprecationWarning)
That would be enough to keep numpy quiet about this for now...
Cheers,
f
From: John H. <jd...@gm...> - 2011年09月18日 21:15:28
On Sun, Sep 18, 2011 at 4:02 PM, Eric Firing <ef...@ha...> wrote:
> There is a way to deal with this now: define our own copyto which uses
> np.copyto if it exists, and falls back on putnav otherwise. I think this
> can be done with reasonable safety and no loss of performance. The only
> question is where to put our copyto. I think a new compat.py would make
> sense as a home for this sort of version compatibility interface code. We
> may need a lot more in the future as numpy evolves.
We used to put these in cbook I believe; eg functions that existed in
python2.3 that we wanted to use but weren't defined in python2.2 which
we supported. We could prefix them with a leading underscore to steer
users away from them
def _copyto(...):
 # temporary function to use numpy's copyto if it is defined, else
putmask; this function will be deprecated when we support only numpy
2.0 and later
 ...
I'd be in favor of doing this, because deprecations warnings are a nuisance.
JDH
From: Eric F. <ef...@ha...> - 2011年09月18日 21:04:56
On 09/18/2011 09:46 AM, Fernando Perez wrote:
> On Sun, Sep 18, 2011 at 12:41 PM, John Hunter<jd...@gm...> wrote:
>>
>> I'm on 11.04, 64 bit also.
>>
>> What does this give you?
>>
>> > ython -c 'import numpy as np; print np.__version__; x =
>> np.random.rand(10); np.putmask(x, x<0.5, 0.)'
>>
>> I only get the version string 2.0.0.dev-aded70c, no warning.
>
> It seems to be python version-dependent, my system python is 2.6 and I
> get the warning:
>
> (master)dreamweaver[matplotlib]> python -c 'import numpy as np; print
> np.__version__; x = np.random.rand(10); np.putmask(x, x<0.5, 0.)'
> 2.0.0.dev-aded70c
> -c:1: DeprecationWarning: putmask has been deprecated. Use copyto with
> 'where' as the mask instead
>
> but with 2.7 I don't:
>
> (master)dreamweaver[matplotlib]> python2.7 -c 'import numpy as np;
> print np.__version__; x = np.random.rand(10); np.putmask(x, x<0.5,
> 0.)'
> 2.0.0.dev-aded70c
Right.
http://docs.python.org/dev/whatsnew/2.7.html explains the change in 
handling DeprecationWarning.
Eric
>
>
> Cheers,
>
> f
>
> ------------------------------------------------------------------------------
> BlackBerry&reg; DevCon Americas, Oct. 18-20, San Francisco, CA
> http://p.sf.net/sfu/rim-devcon-copy2
> _______________________________________________
> Matplotlib-devel mailing list
> Mat...@li...
> https://lists.sourceforge.net/lists/listinfo/matplotlib-devel
From: Eric F. <ef...@ha...> - 2011年09月18日 21:02:31
On 09/18/2011 09:54 AM, John Hunter wrote:
>> putmask was deprecated in favor of copyto only 2 months ago; copyto
>> didn't even exist before that. So we certainly can't replace putmask
>> with copyto in mpl.
>>
>> http://currents.soest.hawaii.edu/hgstage/numpy_from_git/rev/26533521322b
>
>
> The putmasks in colors.py are simple and could be replaced by a simple
> boolean, mask eg replace
>
> np.putmask(xa, xa==1.0, 0.9999999) #Treat 1.0 as slightly less than 1.
>
> with
>
> xa[xa==1.0] = 0.9999999 #Treat 1.0 as slightly less than 1.
>
> In quiver.py, there appear to be some broadcasting shape issues that
> make this trickier, eg in
>
> short = np.repeat(length< minsh, 8, axis=1)
> # Now select X0, Y0 if short, otherwise X, Y
> np.putmask(X, short, X0)
>
> Since much of quiver.py is your code I believe Eric, maybe you can
> come up with something that doesn't rely on putmasking and just uses
> plain vanilla boolean arrays of the right shape?
>
> JDH
John,
There is a way to deal with this now: define our own copyto which uses 
np.copyto if it exists, and falls back on putnav otherwise. I think 
this can be done with reasonable safety and no loss of performance. The 
only question is where to put our copyto. I think a new compat.py would 
make sense as a home for this sort of version compatibility interface 
code. We may need a lot more in the future as numpy evolves.
Eric
From: Eric F. <ef...@ha...> - 2011年09月18日 20:08:37
On 09/18/2011 09:54 AM, John Hunter wrote:
>> putmask was deprecated in favor of copyto only 2 months ago; copyto
>> didn't even exist before that. So we certainly can't replace putmask
>> with copyto in mpl.
>>
>> http://currents.soest.hawaii.edu/hgstage/numpy_from_git/rev/26533521322b
>
>
> The putmasks in colors.py are simple and could be replaced by a simple
> boolean, mask eg replace
>
> np.putmask(xa, xa==1.0, 0.9999999) #Treat 1.0 as slightly less than 1.
>
> with
>
> xa[xa==1.0] = 0.9999999 #Treat 1.0 as slightly less than 1.
>
> In quiver.py, there appear to be some broadcasting shape issues that
> make this trickier, eg in
>
> short = np.repeat(length< minsh, 8, axis=1)
> # Now select X0, Y0 if short, otherwise X, Y
> np.putmask(X, short, X0)
>
> Since much of quiver.py is your code I believe Eric, maybe you can
> come up with something that doesn't rely on putmasking and just uses
> plain vanilla boolean arrays of the right shape?
I really don't want to mess with this now; putmask was used because it 
is *much* faster than boolean indexing (after I supplied the 
fast_putmask code to numpy back in 2007). And I did that because it 
removed a genuine, significant bottleneck in mpl. Now, with Mark 
Wiebe's modifications to numpy, putmask is obsolete. His copyto is as 
fast, and boolean indexing might even be good enough now. But the next 
mpl release is not targeted at numpy 2.0. It will be used with older 
versions as well, and probably most often.
We will need to deal with the deprecation of putmask, but this is not 
the time to do it, unless there is a way to do it that does *not* change 
the present actual *use* of putmask, but merely tells numpy to shut up 
about it. I don't know why it is complaining; I don't think that it is 
normal procedure to start issuing warnings the minute a replacement 
(copyto) appears.
We are trying to get a release out without introducing major breakage. 
It is a bad time to muck around with internals like the use of putmask.
Eric
>
> JDH
From: John H. <jd...@gm...> - 2011年09月18日 19:54:47
> putmask was deprecated in favor of copyto only 2 months ago; copyto
> didn't even exist before that. So we certainly can't replace putmask
> with copyto in mpl.
>
> http://currents.soest.hawaii.edu/hgstage/numpy_from_git/rev/26533521322b
The putmasks in colors.py are simple and could be replaced by a simple
boolean, mask eg replace
 np.putmask(xa, xa==1.0, 0.9999999) #Treat 1.0 as slightly less than 1.
with
 xa[xa==1.0] = 0.9999999 #Treat 1.0 as slightly less than 1.
In quiver.py, there appear to be some broadcasting shape issues that
make this trickier, eg in
 short = np.repeat(length < minsh, 8, axis=1)
 # Now select X0, Y0 if short, otherwise X, Y
 np.putmask(X, short, X0)
Since much of quiver.py is your code I believe Eric, maybe you can
come up with something that doesn't rely on putmasking and just uses
plain vanilla boolean arrays of the right shape?
JDH
From: Fernando P. <fpe...@gm...> - 2011年09月18日 19:46:43
On Sun, Sep 18, 2011 at 12:41 PM, John Hunter <jd...@gm...> wrote:
>
> I'm on 11.04, 64 bit also.
>
> What does this give you?
>
> > ython -c 'import numpy as np; print np.__version__; x =
> np.random.rand(10); np.putmask(x, x<0.5, 0.)'
>
> I only get the version string 2.0.0.dev-aded70c, no warning.
It seems to be python version-dependent, my system python is 2.6 and I
get the warning:
(master)dreamweaver[matplotlib]> python -c 'import numpy as np; print
np.__version__; x = np.random.rand(10); np.putmask(x, x<0.5, 0.)'
2.0.0.dev-aded70c
-c:1: DeprecationWarning: putmask has been deprecated. Use copyto with
'where' as the mask instead
but with 2.7 I don't:
(master)dreamweaver[matplotlib]> python2.7 -c 'import numpy as np;
print np.__version__; x = np.random.rand(10); np.putmask(x, x<0.5,
0.)'
2.0.0.dev-aded70c
Cheers,
f
From: Eric F. <ef...@ha...> - 2011年09月18日 19:44:33
On 09/18/2011 09:24 AM, Fernando Perez wrote:
> On Sun, Sep 18, 2011 at 12:05 PM, John Hunter<jd...@gm...> wrote:
>> I can fix these putmask calls, but strangely I am not seeing the
>> deprecation warning on numpy and mpl HEAD
putmask was deprecated in favor of copyto only 2 months ago; copyto 
didn't even exist before that. So we certainly can't replace putmask 
with copyto in mpl.
http://currents.soest.hawaii.edu/hgstage/numpy_from_git/rev/26533521322b
Eric
>>
>> In [1]: print np.__version__
>> 2.0.0.dev-aded70c
>>
>> In [2]: print matplotlib.__version__
>> 1.1.0
>>
>> In [3]: imshow(rand(10,10))
>> Out[3]:<matplotlib.image.AxesImage at 0x48ff8d0>
>
> Weird, I'm on the same; I just did a clean git pull right before building:
>
> In [1]: np.__version__
> Out[1]: '2.0.0.dev-aded70c'
>
> In [2]: matplotlib.__version__
> Out[2]: '1.1.0'
>
> (master)dreamweaver[matplotlib]> git log --oneline | head -1
> fcc8039 axisartist: implement LocatorDM, LocatorD, LocatorHM, LocatorH
> and update FormatterHMS and FormaterDMS
>
>
> This is on a linux 10.10 box, 64-bit just in case it matters. I
> haven't tested it on 32-bits. The problem also appears (at least for
> me) on my office box that you have access to.
>
> Happy to test further...
>
> f
>
> ------------------------------------------------------------------------------
> BlackBerry&reg; DevCon Americas, Oct. 18-20, San Francisco, CA
> http://p.sf.net/sfu/rim-devcon-copy2
> _______________________________________________
> Matplotlib-devel mailing list
> Mat...@li...
> https://lists.sourceforge.net/lists/listinfo/matplotlib-devel
From: Christoph G. <cg...@uc...> - 2011年09月18日 19:30:17
Hello,
matplotlib uses int(x*255) or np.array(x*255, np.uint8) to quantize 
normalized floating point numbers x in the range [0.0 to 1.0] to 
integers in the range [0 to 255]. This way only 1.0 is mapped to 255, 
not for example 0.999. Is this really intended or would not the largest 
floating point number below 256.0 be a better scale factor than 255? The 
exact factor depends on the floating point precision (~255.999992 for 
np.float32, ~255.93 for np.float16).
Christoph
From: Fernando P. <fpe...@gm...> - 2011年09月18日 19:24:59
On Sun, Sep 18, 2011 at 12:05 PM, John Hunter <jd...@gm...> wrote:
> I can fix these putmask calls, but strangely I am not seeing the
> deprecation warning on numpy and mpl HEAD
>
> In [1]: print np.__version__
> 2.0.0.dev-aded70c
>
> In [2]: print matplotlib.__version__
> 1.1.0
>
> In [3]: imshow(rand(10,10))
> Out[3]: <matplotlib.image.AxesImage at 0x48ff8d0>
Weird, I'm on the same; I just did a clean git pull right before building:
In [1]: np.__version__
Out[1]: '2.0.0.dev-aded70c'
In [2]: matplotlib.__version__
Out[2]: '1.1.0'
(master)dreamweaver[matplotlib]> git log --oneline | head -1
fcc8039 axisartist: implement LocatorDM, LocatorD, LocatorHM, LocatorH
and update FormatterHMS and FormaterDMS
This is on a linux 10.10 box, 64-bit just in case it matters. I
haven't tested it on 32-bits. The problem also appears (at least for
me) on my office box that you have access to.
Happy to test further...
f
From: John H. <jd...@gm...> - 2011年09月18日 19:20:41
On Sun, Sep 18, 2011 at 1:17 AM, Christoph Gohlke <cg...@uc...> wrote:
> The master branch builds OK on Windows and so far almost everything
> worked well.
>
> I have trouble receiving the sample_data from github via cbook.py. There
> are frequent HTTP 304 (Not Modified) and 500 (Internal Server Error)
> exceptions and redirection to
> <https://raw.github.com/matplotlib/sample_data/master>.
I confirmed this on linux and added an issue on github:
https://github.com/matplotlib/matplotlib/issues/478. I also assigned
a new tag "release_critical" which we should use as we close in on the
release to mark show-stopper issues. I assigned this to Jouni since
he wrote most of the original implementation. Jouni, if you can't get
to this let me know and I'll take a look.
JDH
From: John H. <jd...@gm...> - 2011年09月18日 19:05:58
On Sun, Sep 18, 2011 at 1:44 PM, Fernando Perez <fpe...@gm...> wrote:
> I'm not sure why, but as of a few weeks ago, with recent builds of
> numpy/mpl I always get these warnings:
>
> In [1]: imshow(rand(10,10))
> Out[1]: <matplotlib.image.AxesImage at 0x278f390>
>
> In [2]: /home/fperez/usr/opt/lib/python2.6/site-packages/matplotlib/colors.py:519:
> DeprecationWarning: putmask has been deprecated. Use copyto with
> 'where' as the mask instead
> np.putmask(xa, xa==1.0, 0.9999999) #Treat 1.0 as slightly less than 1.
> /home/fperez/usr/opt/lib/python2.6/site-packages/matplotlib/colors.py:531:
> DeprecationWarning: putmask has been deprecated. Use copyto with
> 'where' as the mask instead
> np.putmask(xa, xa<0.0, -1)
> /home/fperez/usr/opt/lib/python2.6/site-packages/matplotlib/colors.py:535:
> DeprecationWarning: putmask has been deprecated. Use copyto with
> 'where' as the mask instead
> np.putmask(xa, xa>self.N-1, self._i_over)
> /home/fperez/usr/opt/lib/python2.6/site-packages/matplotlib/colors.py:536:
> DeprecationWarning: putmask has been deprecated. Use copyto with
> 'where' as the mask instead
> np.putmask(xa, xa<0, self._i_under)
>
>
> It would be nice to have these gone from master before release.
I can fix these putmask calls, but strangely I am not seeing the
deprecation warning on numpy and mpl HEAD
 In [1]: print np.__version__
 2.0.0.dev-aded70c
 In [2]: print matplotlib.__version__
 1.1.0
 In [3]: imshow(rand(10,10))
 Out[3]: <matplotlib.image.AxesImage at 0x48ff8d0>
If I do a simple putmask test I also don't get the warning
 In [4]: x = np.random.rand(10)
 In [5]: np.putmask(x, x<0.5, 0)
Do you have some custom warning or error settings turned on/ What
commit of np are you on?
I like how they have the commit hash in the version number; we need that.
From: Fernando P. <fpe...@gm...> - 2011年09月18日 18:45:47
I'm not sure why, but as of a few weeks ago, with recent builds of
numpy/mpl I always get these warnings:
In [1]: imshow(rand(10,10))
Out[1]: <matplotlib.image.AxesImage at 0x278f390>
In [2]: /home/fperez/usr/opt/lib/python2.6/site-packages/matplotlib/colors.py:519:
DeprecationWarning: putmask has been deprecated. Use copyto with
'where' as the mask instead
 np.putmask(xa, xa==1.0, 0.9999999) #Treat 1.0 as slightly less than 1.
/home/fperez/usr/opt/lib/python2.6/site-packages/matplotlib/colors.py:531:
DeprecationWarning: putmask has been deprecated. Use copyto with
'where' as the mask instead
 np.putmask(xa, xa<0.0, -1)
/home/fperez/usr/opt/lib/python2.6/site-packages/matplotlib/colors.py:535:
DeprecationWarning: putmask has been deprecated. Use copyto with
'where' as the mask instead
 np.putmask(xa, xa>self.N-1, self._i_over)
/home/fperez/usr/opt/lib/python2.6/site-packages/matplotlib/colors.py:536:
DeprecationWarning: putmask has been deprecated. Use copyto with
'where' as the mask instead
 np.putmask(xa, xa<0, self._i_under)
It would be nice to have these gone from master before release.
Cheers,
f
From: Sandro T. <mo...@de...> - 2011年09月18日 16:59:05
Hello,
there are some scripts in the data/ dir (I'm not even sure they're
needed at all, but they are there) missing the shebang; attached patch
adds it.
Regards,
-- 
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...> - 2011年09月18日 15:52:17
On Sun, Sep 18, 2011 at 16:53, John Hunter <jd...@gm...> wrote:
> Take a look at
>
> https://github.com/matplotlib/basemap/blob/master/README
>
> Does this have everything you need?
Gaah, I was overwhelmed by the third-party tools copyright/licenses I
missed the basemap ones: thanks John!
-- 
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...> - 2011年09月18日 14:53:56
On Sun, Sep 18, 2011 at 9:46 AM, Sandro Tosi <mo...@de...> wrote:
> Hello,
> I'm packaging basemap for Debian, but as you know, we always have some
> problems :)
>
> One important part of Debian packaging is the license/copyright
> checks, but for basemap I can't find any explicit indication of them:
>
> for license I have
>
>  OSI Approved
>
> that doesn't mean anything (legally speaking): for example, is it BSD
> or GPL-3 ? the difference is *huge*
>
> and for copyright I only have the author, but not the years of
> validity, except for a single 2006 reference.
>
> Could you please mention them explicitly with the next release of basemap?
>
> Thanks in advance,
Take a look at
https://github.com/matplotlib/basemap/blob/master/README
Does this have everything you need?
From: Sandro T. <mo...@de...> - 2011年09月18日 14:50:20
Hi,
when running
 python setup.py clean
nad2bin is compiled. I've just worked around with the attached patch,
so it would be nice if you can integrate it upstream or come up with a
better solution.
Regards,
-- 
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...> - 2011年09月18日 14:47:15
Hello,
I'm packaging basemap for Debian, but as you know, we always have some
problems :)
One important part of Debian packaging is the license/copyright
checks, but for basemap I can't find any explicit indication of them:
for license I have
 OSI Approved
that doesn't mean anything (legally speaking): for example, is it BSD
or GPL-3 ? the difference is *huge*
and for copyright I only have the author, but not the years of
validity, except for a single 2006 reference.
Could you please mention them explicitly with the next release of basemap?
Thanks in advance,
-- 
Sandro Tosi (aka morph, morpheus, matrixhasu)
My website: http://matrixhasu.altervista.org/
Me at Debian: http://wiki.debian.org/SandroTosi
From: Jouni K. S. <jk...@ik...> - 2011年09月18日 12:43:40
Eric Firing <ef...@ha...> writes:
> image_interp pdf
I bisected this to
79ca159 recover old behavior for 'nearest' interpolation and introduces 'none'. close #83
which changes the meaning of "nearest" interpolation but does not change
the corresponding test. I'll send a pull request to fix this soon.
This reminds me: what's the status of the buildbot? Regular buildbot
runs would have caught this much sooner. If I could find some place to
run buildbot, does the git repository contain all the necessary scripts
and configuration or is it more work to set it up?
-- 
Jouni K. Seppänen
http://www.iki.fi/jks
From: Christoph G. <cg...@uc...> - 2011年09月18日 06:17:13
On 9/17/2011 7:16 PM, Eric Firing wrote:
> On 09/17/2011 12:17 PM, Christoph Gohlke wrote:
>>
>>
>> On 9/17/2011 2:08 PM, Benjamin Root wrote:
>>> I think it will take a declaration of a firm deadline. How about this?
>>>
>>> Cut RC release Friday, Sept 23rd
>>> Release v1.1.0 Friday, Sept. 30th.
>>> (Barring any major significant changes)
>>>
>>> In particular, for the RC, I want to make sure that installation and
>>> documents for the installation is solid. I will have on hand an older,
>>> stock Macbook Pro with Snow Leopard and a relatively new iMac with Snow
>>> Leopard (one is 32 bits while the other is 64, I think).
>>>
>>> As a side note, the macbook can be used for automated build/test machine
>>> as it really isn't useful for anything else for me.
>>>
>>> Ben Root
>>>
>>
>> That sounds to me as if the master branch is at release quality, or very
>> close to. I could test it on Windows this weekend if that's true.
>
> Christoph,
>
> It should be close. There are still three test failures, which I noted
> in a separate message to matplotlib-devel.
>
> Eric
>
>>
>> Christoph
>>
The master branch builds OK on Windows and so far almost everything 
worked well.
I have trouble receiving the sample_data from github via cbook.py. There 
are frequent HTTP 304 (Not Modified) and 500 (Internal Server Error) 
exceptions and redirection to 
<https://raw.github.com/matplotlib/sample_data/master>.
Christoph
From: Eric F. <ef...@ha...> - 2011年09月18日 02:16:31
On 09/17/2011 12:17 PM, Christoph Gohlke wrote:
>
>
> On 9/17/2011 2:08 PM, Benjamin Root wrote:
>> I think it will take a declaration of a firm deadline. How about this?
>>
>> Cut RC release Friday, Sept 23rd
>> Release v1.1.0 Friday, Sept. 30th.
>> (Barring any major significant changes)
>>
>> In particular, for the RC, I want to make sure that installation and
>> documents for the installation is solid. I will have on hand an older,
>> stock Macbook Pro with Snow Leopard and a relatively new iMac with Snow
>> Leopard (one is 32 bits while the other is 64, I think).
>>
>> As a side note, the macbook can be used for automated build/test machine
>> as it really isn't useful for anything else for me.
>>
>> Ben Root
>>
>
> That sounds to me as if the master branch is at release quality, or very
> close to. I could test it on Windows this weekend if that's true.
Christoph,
It should be close. There are still three test failures, which I noted 
in a separate message to matplotlib-devel.
Eric
>
> Christoph
>
> ------------------------------------------------------------------------------
> BlackBerry&reg; DevCon Americas, Oct. 18-20, San Francisco, CA
> http://p.sf.net/sfu/rim-devcon-copy2
> _______________________________________________
> Matplotlib-devel mailing list
> Mat...@li...
> https://lists.sourceforge.net/lists/listinfo/matplotlib-devel
From: Eric F. <ef...@ha...> - 2011年09月18日 02:10:44
I tried running the nosetests, and got failures. I put in a pull 
request to take care of one source, but three remain:
symlog2 svg
image_interp pdf
tight_layout5 svg
I have only looked into the last of these, which has nothing to do 
directly with tight_layout; on my system, the svg file is being 
generated with interpolation, even though the call to imshow has 
interpolation="none". I don't know what is going on. When I simply 
make an image with that kwarg and save to svg, it's fine. But it is not 
working that way in the test.
Eric
From: John H. <jd...@gm...> - 2011年09月18日 00:15:43
On Sat, Sep 17, 2011 at 7:01 PM, Benjamin Root <ben...@ou...> wrote:
> Agreed. Let's declare a feature freeze at this point. Unless you already
> have a pull, no new features, and even those with existing pulls need to be
> carefully considered. I already have to make some updates to the "what's
> new" section...
While you are working on 'what's new" could you consider adding a
section on the new sankey module and maybe inline one example from the
api/sankey_demo.py? I think they are pretty snazzy.
https://github.com/matplotlib/matplotlib/pull/465
JDH

Showing results of 26

1 2 > >> (Page 1 of 2)
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 によって変換されたページ (->オリジナル) /