You can subscribe to this list here.
| 2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(3) |
Jun
|
Jul
|
Aug
(12) |
Sep
(12) |
Oct
(56) |
Nov
(65) |
Dec
(37) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2004 |
Jan
(59) |
Feb
(78) |
Mar
(153) |
Apr
(205) |
May
(184) |
Jun
(123) |
Jul
(171) |
Aug
(156) |
Sep
(190) |
Oct
(120) |
Nov
(154) |
Dec
(223) |
| 2005 |
Jan
(184) |
Feb
(267) |
Mar
(214) |
Apr
(286) |
May
(320) |
Jun
(299) |
Jul
(348) |
Aug
(283) |
Sep
(355) |
Oct
(293) |
Nov
(232) |
Dec
(203) |
| 2006 |
Jan
(352) |
Feb
(358) |
Mar
(403) |
Apr
(313) |
May
(165) |
Jun
(281) |
Jul
(316) |
Aug
(228) |
Sep
(279) |
Oct
(243) |
Nov
(315) |
Dec
(345) |
| 2007 |
Jan
(260) |
Feb
(323) |
Mar
(340) |
Apr
(319) |
May
(290) |
Jun
(296) |
Jul
(221) |
Aug
(292) |
Sep
(242) |
Oct
(248) |
Nov
(242) |
Dec
(332) |
| 2008 |
Jan
(312) |
Feb
(359) |
Mar
(454) |
Apr
(287) |
May
(340) |
Jun
(450) |
Jul
(403) |
Aug
(324) |
Sep
(349) |
Oct
(385) |
Nov
(363) |
Dec
(437) |
| 2009 |
Jan
(500) |
Feb
(301) |
Mar
(409) |
Apr
(486) |
May
(545) |
Jun
(391) |
Jul
(518) |
Aug
(497) |
Sep
(492) |
Oct
(429) |
Nov
(357) |
Dec
(310) |
| 2010 |
Jan
(371) |
Feb
(657) |
Mar
(519) |
Apr
(432) |
May
(312) |
Jun
(416) |
Jul
(477) |
Aug
(386) |
Sep
(419) |
Oct
(435) |
Nov
(320) |
Dec
(202) |
| 2011 |
Jan
(321) |
Feb
(413) |
Mar
(299) |
Apr
(215) |
May
(284) |
Jun
(203) |
Jul
(207) |
Aug
(314) |
Sep
(321) |
Oct
(259) |
Nov
(347) |
Dec
(209) |
| 2012 |
Jan
(322) |
Feb
(414) |
Mar
(377) |
Apr
(179) |
May
(173) |
Jun
(234) |
Jul
(295) |
Aug
(239) |
Sep
(276) |
Oct
(355) |
Nov
(144) |
Dec
(108) |
| 2013 |
Jan
(170) |
Feb
(89) |
Mar
(204) |
Apr
(133) |
May
(142) |
Jun
(89) |
Jul
(160) |
Aug
(180) |
Sep
(69) |
Oct
(136) |
Nov
(83) |
Dec
(32) |
| 2014 |
Jan
(71) |
Feb
(90) |
Mar
(161) |
Apr
(117) |
May
(78) |
Jun
(94) |
Jul
(60) |
Aug
(83) |
Sep
(102) |
Oct
(132) |
Nov
(154) |
Dec
(96) |
| 2015 |
Jan
(45) |
Feb
(138) |
Mar
(176) |
Apr
(132) |
May
(119) |
Jun
(124) |
Jul
(77) |
Aug
(31) |
Sep
(34) |
Oct
(22) |
Nov
(23) |
Dec
(9) |
| 2016 |
Jan
(26) |
Feb
(17) |
Mar
(10) |
Apr
(8) |
May
(4) |
Jun
(8) |
Jul
(6) |
Aug
(5) |
Sep
(9) |
Oct
(4) |
Nov
|
Dec
|
| 2017 |
Jan
(5) |
Feb
(7) |
Mar
(1) |
Apr
(5) |
May
|
Jun
(3) |
Jul
(6) |
Aug
(1) |
Sep
|
Oct
(2) |
Nov
(1) |
Dec
|
| 2018 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2020 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2025 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| S | M | T | W | T | F | S |
|---|---|---|---|---|---|---|
|
|
1
(9) |
2
(8) |
3
(6) |
4
(5) |
5
(10) |
6
(1) |
|
7
|
8
(5) |
9
(3) |
10
(12) |
11
(24) |
12
(28) |
13
(16) |
|
14
(3) |
15
(10) |
16
(17) |
17
(19) |
18
(10) |
19
(20) |
20
(7) |
|
21
(11) |
22
(7) |
23
(5) |
24
(4) |
25
(11) |
26
(19) |
27
(1) |
|
28
(1) |
29
(13) |
30
(7) |
31
(22) |
|
|
|
|
From: WALTER A. <ala...@th...> - 2011-08-11 09:32:12
|
Hello,
It's my first post on this forum and I'm very happy to discover a forum dedicated to matplotlib. I 've begun recently a development with matplotlib inside my python (2.7)application.
In a first step I've developped a stand alone graphical display and it runs properly. In a second step, I try to manage this graphical display through gtk (because my main application is in python/gtk) : now, most of functionalities run well, but labels on my 3 axes are no more displayed and I don't understand why.
Thank you for all suggestions.
Here is the source code with gtk
-----------------------------------------------------------------------------------------------------------------
import sys
import gtk
import numpy as np
import matplotlib.pyplot as plt
from matplotlib.figure import Figure
from matplotlib.backends.backend_gtk import FigureCanvasGTK as FigureCanvas
from matplotlib.backends.backend_gtk import NavigationToolbar2GTK as NavigationToolbar
from StringIO import StringIO # StringIO behaves like a file object
from mpl_toolkits.mplot3d import Axes3D
from matplotlib.colors import colorConverter
from matplotlib.widgets import Button
class SectorDisplay2__:
"""
Display view of sectors and volumes
"""
def __init__(self):
win = gtk.Window()
win.connect("destroy",self.SectorDisplayClosePanel)
win.set_default_size(800,800)
vbox = gtk.VBox()
win.add(vbox)
fig = Figure()
canvas = FigureCanvas(fig) # a gtk.DrawingArea
ax = Axes3D(fig)
#get lines as csv description
line = ""
line = line+"VOL1;P4120;0;999;-49.68722222222222;-1.52166666666667;\n"
line = line+"VOL1;P4121;0;999;-49.68722222222222;-2.20722222222222;\n"
line = line+"VOL1;P1421;0;999;-49.23750000000000;-2.20722222222222;\n"
line = line+"VOL1;P1422;0;999;-49.23750000000000;-1.52166666666667;\n"
line = line+"VOL1;P4120;0;999;-49.68722222222222;-1.52166666666667;\n"
lines = StringIO(line)
# get the list of point coordinates and level
data = np.loadtxt(lines,
delimiter=';',
usecols = (0,1,2,3,4,5), # 0=volume 1=point 2=lower level 3=upper_level, 4=lat 5=long
dtype = np.dtype({'names':['volume','point','lower','upper','lat','long'],
'formats': ['S20','S5','i4','i4','f4','f4']}) )
# Get one particular volume
onevolume = data[data['volume']=="VOL1"]
ax.plot(onevolume['long'],onevolume['lat'],onevolume['upper'])
ax.plot(onevolume['long'],onevolume['lat'],onevolume['lower'])
for i in range(len(onevolume)-1):
ax.plot([onevolume['long'][i],onevolume['long'][i]],
[onevolume['lat'][i],onevolume['lat'][i]],
[onevolume['lower'][i],onevolume['upper'][i]])
ax.set_ylabel('Latitude (deg)')
ax.set_xlabel('Longitude (deg)')
ax.set_zlabel('Level (100xfeet)')
ax.set_title('Volumic definition')
vbox.pack_start(canvas)
toolbar = NavigationToolbar(canvas,win)
vbox.pack_start(toolbar,False,False)
win.show_all()
# Run the Gtk mainloop
gtk.main()
def SectorDisplayClosePanel(self,caller):
gtk.main_quit()
if __name__ == '__main__':
SectorDisplay2__()
-------------------------------------------------------------------------------------
Here is the initial source code without gtk:
-------------------------------------------------------------------------------------
import sys
import numpy as np
import matplotlib.pyplot as plt
from matplotlib.figure import Figure
from matplotlib.backends.backend_gtk import FigureCanvasGTK as FigureCanvas
from matplotlib.backends.backend_gtk import NavigationToolbar2GTK as NavigationToolbar
from StringIO import StringIO # StringIO behaves like a file object
from mpl_toolkits.mplot3d import Axes3D
from matplotlib.colors import colorConverter
from matplotlib.widgets import Button
class SectorDisplay2__:
"""
Display view of sectors and volumes
"""
def __init__(self):
"""
@param parentWin: Window which is parent of this window
@type parentWin: Widget
@param typevol: give the type of volume : volume, sector, non controlled area ...
@type typevol: str
@param entity_name: entity to display
@type entity_name: str
@type application: <Application__>
@param application: instance of class Application__
@param class_creation: indicates a class creation and not only a call to Class__.__init__
@type class_creation: boolean
"""
fig = plt.figure()
ax = Axes3D(fig)
#get lines as csv description
line = ""
line = line+"VOL1;P4120;0;999;-49.68722222222222;-1.52166666666667;\n"
line = line+"VOL1;P4121;0;999;-49.68722222222222;-2.20722222222222;\n"
line = line+"VOL1;P1421;0;999;-49.23750000000000;-2.20722222222222;\n"
line = line+"VOL1;P1422;0;999;-49.23750000000000;-1.52166666666667;\n"
line = line+"VOL1;P4120;0;999;-49.68722222222222;-1.52166666666667;\n"
lines = StringIO(line)
# get the list of point coordinates and level
data = np.loadtxt(lines,
delimiter=';',
usecols = (0,1,2,3,4,5), # 0=volume 1=point 2=lower level 3=upper_level, 4=lat 5=long
dtype = np.dtype({'names':['volume','point','lower','upper','lat','long'],
'formats': ['S20','S5','i4','i4','f4','f4']}) )
# Get one particular volume
onevolume = data[data['volume']=="VOL1"]
ax.plot(onevolume['long'],onevolume['lat'],onevolume['upper'])
ax.plot(onevolume['long'],onevolume['lat'],onevolume['lower'])
for i in range(len(onevolume)-1):
ax.plot([onevolume['long'][i],onevolume['long'][i]],
[onevolume['lat'][i],onevolume['lat'][i]],
[onevolume['lower'][i],onevolume['upper'][i]])
ax.set_ylabel('Latitude (deg)')
ax.set_xlabel('Longitude (deg)')
ax.set_zlabel('Level (100xfeet)')
ax.set_title('Volumic definition')
plt.show()
def SectorDisplayClosePanel(self,caller):
plt.close()
if __name__ == '__main__':
SectorDisplay2__()
-------------------------------------------------------------------------------------
|
|
From: RICHARD Georges-E. <per...@gm...> - 2011-08-11 06:38:01
|
First of all congratulation for the release 1.1.0 of matplotlib it's a wonderfull. since the version 0.90 I started to use it, I keep enjoy it everyday. I work with PyQT4 and PySide. I try to modify the height of the NavigationToolbar2QT, but no matter I use "resize" the Qt4 method nothing happen. code available: http://pastebin.com/8KW2dWG2 #...# all Qt imports from matplotlib.backends.backend_qt4agg import FigureCanvasQTAgg as FigureCanvas from matplotlib.backends.backend_qt4 import NavigationToolbar2QT as NavigationToolbar class MPL_widget(QWidget): def __init__(self,parent): QWidget.__init__(self,parent) self.canvas = FigureCanvas() self.toolbar = NavigationToolbar(self.canvas,self.canvas) self.toolbar.resize(100,10) # self.vbox = QVBoxLayout() vbox = self.vbox vbox.addWidget(self.canvas) vbox.addWidget(self.toolbar) self.setLayout(vbox) I tryed to modify directly in matplotlib module 'matplotlib.backends.backed_qt4' in the constructor of NavigationToolbar2QT just after the call of QToolBar.__init__(), nothing happen either. finaly I added a QSplitter, which let me hide the bar during runtime, but my first goal was rather to reduce the size and all icon inside. from PyQt4.QtCore import * from PyQt4.QtGui import * import PyQt4.QtGui as QtGui import matplotlib if matplotlib.get_backend() != "Qt4Agg": matplotlib.use("Qt4Agg") from matplotlib.backends.backend_qt4agg import FigureCanvasQTAgg as FigureCanvas from matplotlib.backends.backend_qt4 import NavigationToolbar2QT as NavigationToolbar from matplotlib.figure import Figure class MPL_Widget(QWidget): def __init__(self, parent = None): QWidget.__init__(self, parent) self.fig = Figure(figsize = (10, 12), dpi=100, facecolor = '#FFFFFF') self.ax = self.fig.add_subplot(111, sharex = None, sharey = None) self.canvas = FigureCanvas(self.fig) self.toolbar = NavigationToolbar(self.canvas, self.canvas) self.toolbar.resize(10,10) # this line does nothing self.vbox = QVBoxLayout() tmp = self.vbox tmp = QSplitter() tmp.setOrientation(Qt.Vertical) tmp.setContentsMargins(0,0,0,0) tmp.addWidget(self.canvas) tmp.addWidget(self.toolbar) self.vbox.addWidget(tmp) self.setLayout(self.vbox) self.layout().setContentsMargins(0,0,0,0) import sys app = QApplication(sys.argv) w = MPL_Widget() import numpy as N x = N.linspace(-10, 10) y = N.sin(x) ax = w.ax ax.plot(x, y, 'o-', mew=0) w.show() sys.exit(app.exec_()) Any hint would be appreciate. Cheers. Joe -- RICHARD Georges-Emmanuel Electronic and Computer Engineer per...@gm... |
|
From: David J. <Jus...@ma...> - 2011-08-10 21:17:04
|
I eventually got it to mostly work using: ³sudo port install py26-matplotlib @1.0.1 +gtk2² It doesn't match the correct egg format it seems, but it does work. On 8/10/11 11:01 AM, "David Just" <Jus...@ma...> wrote: > Hello, > > I¹ve been trying to install matplotlib correctly for the past couple of days. > > I¹m using a macports python2.6 built with +universal on. > > If I install with the the downloadable .egg file I end up with a message that > states that _path.so has problems. (built for 32bit I guess) > ImportError: > dlopen(/opt/local/Library/Frameworks/Python.framework/Versions/2.6/lib/python2 > .6/site-packages/matplotlib-1.0.1_r0-py2.6.egg/matplotlib/_path.so, 2): no > suitable image found. Did find: > > /opt/local/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site > -packages/matplotlib-1.0.1_r0-py2.6.egg/matplotlib/_path.so: no matching > architecture in universal wrapper > > > If I install with easy_install-2.6 matplotlib from source I get the > following: > .... > Best match: matplotlib 0.91.1 > .... > src/_image.cpp:952: error: png_infopp_NULL¹ was not declared in this > scope > error: Setup script exited with error: command '/usr/bin/gcc-4.2' failed > with exit status 1 > > If I install with port install matplotlib it fails because the install in not > the correct path structure in the site-packages folder. > > > I¹ve tried searching the web and have found some indications that I need to > install 32bit python 2.6 but cannot find how to do that, and all of my > production machinese have 64bit python installed on them. > > > Any help at this point would be appreciated. > Thanks. > > > > |
|
From: David J. <Jus...@ma...> - 2011-08-10 21:16:04
|
I have an array of images stored as an array of numpy arrays. I need to be
able to efficiently scroll through that set of images. My first attempt at
doing this goes something like this:
--init--
self.ax = pyplot.imshow(imgdta[0], interpolation='spline36',
cmap=cm.gray, picker=True) # draw the plot @UndefinedVariable
pyplot.axes().set_axis_off()
self.fig = self.ax.get_figure()
self.canvas = FigureCanvasGTKAgg(self.fig)
--onscroll--
self.ax.set_array(imdta[n]) # 0 < n < num_images
self.canvas.draw()
This method of changing the image data does not seem to be very preferment.
It takes ~.25 seconds to go from one image to the next. Can anybody
suggest a faster way? This also ends up in a canvas that¹s much larger than
I need, is there a better way to define my view area?
Thank you,
Dave.
|
|
From: Tony Yu <ts...@gm...> - 2011-08-10 18:55:48
|
On Wed, Aug 10, 2011 at 1:36 PM, Jay Wineinger <jay...@gm...>wrote: > Hi everyone, > > I'm trying to construct a radar plot for 5 variables. I've found the > example code (radar_chart.py) for doing this with matplotlib but I'm having > trouble adjusting one aspect of the rendering. That sample file produces > radar plots with circular frames and ticks (see > http://wineinger.me/plotting/radar_chart1.png). That sample code does > seem to have an option to use a polygon frame rather than a circle (the > default), but this doesn't seem to do much except erase part of the outer > tick lines (http://wineinger.me/plotting/polygon.png vs > http://wineinger.me/plotting/circle.png). > Originally, this example did produce the polygon frame correctly. Improvements to matplotlib have, however, broken this example. If you plot this on a non-white background, you'll see that there is indeed a polygon patch for the axes. Nevertheless the border (i.e. "spine") of the plot is circular because of improvements that separated the spine from the patch. The example code only overrides PolarAxes._gen_axes_patch, but should also override PolarAxes._gen_axes_spines to fix this issue. Unfortunately, I don't have time to work on this. > Plus, I'm looking for the tick lines to parallel the frame, so having a > polygon frame with circular ticks would not be useful to me. > I thought the grid was correctly rendered as polygons instead of circles (when choosing a polygon frame). I don't, however, see anything in the example code to change the grid lines, so my memory might be wrong. Sorry I couldn't be more help. -Tony |
|
From: Marc M. de A. <mar...@gm...> - 2011-08-10 18:42:21
|
Hi Ben,
I will try to do it. Once it is done I let you know.
Cheers,
marc
On Wed, Aug 10, 2011 at 7:41 PM, Benjamin Root <ben...@ou...> wrote:
>
>
> On Wed, Aug 10, 2011 at 12:32 PM, Marc Magrans de Abril
> <mar...@gm...> wrote:
>>
>> Dear colleagues,
>>
>> I'm trying to display an histogram with logarithmic bins using the
>> logarithmic scale in the x-axis. When I execute the attached python
>> script it crashes giving a "Bus Error" message (see also the attached
>> core dump).
>>
>> If I remove the line "plt.xscale('log')" the script goes up to the end.
>>
>> I'm running the program on MacOS 10.6.8, Python 2.5, numpy 1.2.1, and
>> matplotlib 0.98.5.2.
>>
>> Anyone knows the reason of the crash?
>>
>> Thanks,
>> marc
>>
>
> If I remember correctly, there was a log-scale bug in plt.hist() that got
> fixed a little while back. Your version of numpy and matplotlib is a little
> old. Is it possible to update those two packages on your system?
>
> Ben Root
>
>
|
|
From: Marc M. de A. <mar...@ce...> - 2011-08-10 18:40:10
|
Hi Ben,
I will try to do it. Once it is done I let you know.
Cheers,
marc
On Wed, Aug 10, 2011 at 7:41 PM, Benjamin Root <ben...@ou...> wrote:
>
>
> On Wed, Aug 10, 2011 at 12:32 PM, Marc Magrans de Abril
> <mar...@gm...> wrote:
>>
>> Dear colleagues,
>>
>> I'm trying to display an histogram with logarithmic bins using the
>> logarithmic scale in the x-axis. When I execute the attached python
>> script it crashes giving a "Bus Error" message (see also the attached
>> core dump).
>>
>> If I remove the line "plt.xscale('log')" the script goes up to the end.
>>
>> I'm running the program on MacOS 10.6.8, Python 2.5, numpy 1.2.1, and
>> matplotlib 0.98.5.2.
>>
>> Anyone knows the reason of the crash?
>>
>> Thanks,
>> marc
>>
>
> If I remember correctly, there was a log-scale bug in plt.hist() that got
> fixed a little while back. Your version of numpy and matplotlib is a little
> old. Is it possible to update those two packages on your system?
>
> Ben Root
>
>
|
|
From: Benjamin R. <ben...@ou...> - 2011-08-10 17:41:45
|
On Wed, Aug 10, 2011 at 12:32 PM, Marc Magrans de Abril <
mar...@gm...> wrote:
> Dear colleagues,
>
> I'm trying to display an histogram with logarithmic bins using the
> logarithmic scale in the x-axis. When I execute the attached python
> script it crashes giving a "Bus Error" message (see also the attached
> core dump).
>
> If I remove the line "plt.xscale('log')" the script goes up to the end.
>
> I'm running the program on MacOS 10.6.8, Python 2.5, numpy 1.2.1, and
> matplotlib 0.98.5.2.
>
> Anyone knows the reason of the crash?
>
> Thanks,
> marc
>
>
If I remember correctly, there was a log-scale bug in plt.hist() that got
fixed a little while back. Your version of numpy and matplotlib is a little
old. Is it possible to update those two packages on your system?
Ben Root
|
|
From: Jay W. <jay...@gm...> - 2011-08-10 17:36:56
|
Hi everyone, I'm trying to construct a radar plot for 5 variables. I've found the example code (radar_chart.py) for doing this with matplotlib but I'm having trouble adjusting one aspect of the rendering. That sample file produces radar plots with circular frames and ticks (see http://wineinger.me/plotting/radar_chart1.png). That sample code does seem to have an option to use a polygon frame rather than a circle (the default), but this doesn't seem to do much except erase part of the outer tick lines ( http://wineinger.me/plotting/polygon.png vs http://wineinger.me/plotting/circle.png). Plus, I'm looking for the tick lines to parallel the frame, so having a polygon frame with circular ticks would not be useful to me. Here is an example of what I'd like to produce: http://www.corda.com/docsource/doc7/Manuals/project_graphics/design_graphs_radar_transparency.gif. Can anyone provide some sample code to get me started or at least some direction on how to accomplish this? I'm new to matplotlib though I do have a fair bit of python experience. thanks! Jay |
|
From: Marc M. de A. <mar...@gm...> - 2011-08-10 17:33:26
|
Dear colleagues,
I'm trying to display an histogram with logarithmic bins using the
logarithmic scale in the x-axis. When I execute the attached python
script it crashes giving a "Bus Error" message (see also the attached
core dump).
If I remove the line "plt.xscale('log')" the script goes up to the end.
I'm running the program on MacOS 10.6.8, Python 2.5, numpy 1.2.1, and
matplotlib 0.98.5.2.
Anyone knows the reason of the crash?
Thanks,
marc
|
|
From: Marc M. de A. <mar...@ce...> - 2011-08-10 17:31:29
|
Dear colleagues,
I'm trying to display an histogram with logarithmic bins using the
logarithmic scale in the x-axis. When I execute the attached python
script it crashes giving a "Bus Error" message (see also the attached
core dump).
If I remove the line "plt.xscale('log')" the script goes up to the end.
I'm running the program on MacOS 10.6.8, Python 2.5, numpy 1.2.1, and
matplotlib 0.98.5.2.
Anyone knows the reason of the crash?
Thanks,
marc
|
|
From: David J. <Jus...@ma...> - 2011-08-10 16:01:51
|
Hello,
I¹ve been trying to install matplotlib correctly for the past couple of
days.
I¹m using a macports python2.6 built with +universal on.
If I install with the the downloadable .egg file I end up with a message
that states that _path.so has problems. (built for 32bit I guess)
ImportError:
dlopen(/opt/local/Library/Frameworks/Python.framework/Versions/2.6/lib/pytho
n2.6/site-packages/matplotlib-1.0.1_r0-py2.6.egg/matplotlib/_path.so, 2): no
suitable image found. Did find:
/opt/local/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/si
te-packages/matplotlib-1.0.1_r0-py2.6.egg/matplotlib/_path.so: no matching
architecture in universal wrapper
If I install with easy_install-2.6 matplotlib from source I get the
following:
....
Best match: matplotlib 0.91.1
....
src/_image.cpp:952: error: png_infopp_NULL¹ was not declared in this
scope
error: Setup script exited with error: command '/usr/bin/gcc-4.2' failed
with exit status 1
If I install with port install matplotlib it fails because the install in
not the correct path structure in the site-packages folder.
I¹ve tried searching the web and have found some indications that I need to
install 32bit python 2.6 but cannot find how to do that, and all of my
production machinese have 64bit python installed on them.
Any help at this point would be appreciated.
Thanks.
|
|
From: Jeff K. <jt...@ya...> - 2011-08-10 15:33:58
|
Does anyone maintain a PPA with a python-matplotlib-nox suitable for Ubuntu
11.04 amd64 server i.e. built without X or GUI libraries?
On a fresh Ubuntu server install, python-numpy has relatively few dependencies,
but python-matplotlib pulls in everything the full GUI needs.
$ sudo aptitude install python-matplotlib -s
The following NEW packages will be installed:
blt{a} cpp{a} cpp-4.5{a} defoma{a} fontconfig{a} hicolor-icon-theme{a}
libatk1.0-0{a} libatk1.0-data{a} libavahi-client3{a}
libavahi-common-data{a} libavahi-common3{a} libblas3gf{a}
libcloog-ppl0{a} libcups2{a} libdatrie1{a} libelfg0{a} libfontenc1{a}
libgdk-pixbuf2.0-0{a} libgfortran3{a} libgl1-mesa-dri{a}
libgl1-mesa-glx{a} libglade2-0{a} libgmpxx4ldbl{a} libgtk2.0-0{a}
libgtk2.0-bin{a} libgtk2.0-common{a} libice6{a} libjasper1{a}
libjpeg62{a} liblapack3gf{a} libmpc2{a} libmpfr4{a} libpango1.0-0{a}
libppl-c2{a} libppl7{a} libsm6{a} libthai-data{a} libthai0{a}
libtiff4{a} libutempter0{a} libxaw7{a} libxcb-atom1{a}
libxcb-shape0{a} libxcomposite1{a} libxcursor1{a} libxdamage1{a}
libxfixes3{a} libxfont1{a} libxft2{a} libxi6{a} libxinerama1{a}
libxmu6{a} libxpm4{a} libxrandr2{a} libxss1{a} libxt6{a} libxtst6{a}
libxv1{a} libxxf86dga1{a} libxxf86vm1{a} python-dateutil{a}
python-glade2{a} python-gtk2{a} python-matplotlib
python-matplotlib-data{a} python-numpy{a} python-pyparsing{a}
python-tk{a} python-tz{a} shared-mime-info{a} tcl8.5{a} tk8.5{a}
ttf-lyx{a} x-ttcidfont-conf{a} x11-common{a} x11-utils{a} xbitmaps{a}
xfonts-encodings{a} xfonts-utils{a} xterm{a}
0 packages upgraded, 80 newly installed, 0 to remove and 0 not upgraded.
Need to get 33.4 MB of archives. After unpacking 117 MB will be used.
Jeff
|
|
From: awalter1 <ala...@th...> - 2011-08-10 07:14:12
|
Hello,
I begin with matplotlib and I draw volume is a 3D view. It runs acoorectly
but some behavior are not understood. Here is my source code:
fig = plt.figure()
ax = Axes3D(fig)
print "long =",self.onevolume['long']
print "lat =",self.onevolume['lat']
print "upper =",self.onevolume['upper']
print "lower =",self.onevolume['lower']
ax.plot(self.onevolume['long'],self.onevolume['lat'],self.onevolume['upper'])
ax.plot(self.onevolume['long'],self.onevolume['lat'],self.onevolume['lower'])
for i in range(len(self.onevolume)):
ax.plot([self.onevolume['long'][i],self.onevolume['long'][i]],
[self.onevolume['lat'][i],self.onevolume['lat'][i]],
[self.onevolume['lower'][i],self.onevolume['upper'][i]])
ax.set_xlabel('Longitude (deg)')
ax.set_title('Volumic definition of ' + volume)
print "axis=",ax.axis()
canvas = FigureCanvas(fig) # a gtk.DrawingArea
Here is the trace on my terminal:
long = [-5.13888884 -4.04805565 -4.05249977 -3.75972223 -3.92777777
-4.0666666
-4.9000001 -5.13888884]
lat = [-49.71111298 -49.4030571 -49.3955574 -49.4375 -50.34027863
-50.33333206 -49.76666641 -49.71111298]
upper = [999 999 999 999 999 999 999 999]
lower = [245 245 245 245 245 245 245 245]
axis= (-0.095000000000000001, 0.089999999999999997, -0.095000000000000001,
0.089999999999999997)
Then I dont'understand the results given by function axis() regarding the
input values.
Finally, label is not written on x axis, why ?
Here is my figure: http://old.nabble.com/file/p32231816/volume.jpeg
Than you for all suggestions
--
View this message in context: http://old.nabble.com/first-steps-with-matplotlib-tp32231816p32231816.html
Sent from the matplotlib - users mailing list archive at Nabble.com.
|
|
From: Randy H. <he...@in...> - 2011-08-09 23:36:46
|
A user just replied with some problems he had and made me realize that I'd forgotten that I manually installed a freetype2 lib (which made the earlier build recipe work). If I undo that manual freetype2 installation, then I *believe* the earlier recipe will work with the following change: export CFLAGS='-I/usr/X11/include -I/usr/X11/include/freetype2 -I/usr/X11/include/libpng15' -Randy Begin forwarded message: > From: Randy Heiland <he...@in...> > Subject: build matplotlib on OSX Lion > Date: August 9, 2011 4:45:31 PM EDT > To: <mat...@li...> > > Hi all, > > Since I recently got a new machine with a fresh install of OSX Lion, I thought I'd share my building-from-source experience. There seems to be a variety of approaches for doing this that folks have offered up - including installing another Python, installing homebrew (and subsequent pkgs), etc. So I thought I'd add one more - and for all I know this is redundant info. > > My approach was the following: > - use the Python that came with the system: > Python 2.7.1 (r271:86832, Jun 16 2011, 16:59:05) > [GCC 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2335.15.00)] on darwin > > - download matplotlib from git: > git clone git://github.com/matplotlib/matplotlib.git > > cd matplotlib > export CFLAGS='-I/usr/X11/include/freetype2 -I/usr/X11/include/libpng15' > > cd /usr/local/lib > sudo ln -s /usr/X11/lib/libpng15.dylib libpng15.dylib > sudo ln -s /usr/X11/lib/libfreetype.6.dylib libfreetype.dylib > > python setup.py build > sudo python setup.py install > > -Randy |
|
From: Randy H. <he...@in...> - 2011-08-09 20:45:42
|
Hi all, Since I recently got a new machine with a fresh install of OSX Lion, I thought I'd share my building-from-source experience. There seems to be a variety of approaches for doing this that folks have offered up - including installing another Python, installing homebrew (and subsequent pkgs), etc. So I thought I'd add one more - and for all I know this is redundant info. My approach was the following: - use the Python that came with the system: Python 2.7.1 (r271:86832, Jun 16 2011, 16:59:05) [GCC 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2335.15.00)] on darwin - download matplotlib from git: git clone git://github.com/matplotlib/matplotlib.git cd matplotlib export CFLAGS='-I/usr/X11/include/freetype2 -I/usr/X11/include/libpng15' cd /usr/local/lib sudo ln -s /usr/X11/lib/libpng15.dylib libpng15.dylib sudo ln -s /usr/X11/lib/libfreetype.6.dylib libfreetype.dylib python setup.py build sudo python setup.py install -Randy |
|
From: Darren D. <dsd...@gm...> - 2011-08-09 11:38:48
|
On Sat, Aug 6, 2011 at 6:39 PM, R. Padraic Springuel <R.S...@um...> wrote: > So, I have a python 3.2 install on my Mac for other purposes, but when I > heard about the matplotlib branch for python 3 I figured I'd give it a > try even though I have a perfectly good version for python 2.7 running > already. However, in attempting to build matplotlib, I get the > following output: > >> basedirlist is: [] >> ============================================================================ >> BUILDING MATPLOTLIB >> matplotlib: 1.1.0 >> python: 3.2.1 (v3.2.1:ac1f7e5c0510, Jul 9 2011, 00:46:58) >> [GCC 4.0.1 (Apple Inc. build 5493)] >> platform: darwin >> >> REQUIRED DEPENDENCIES >> numpy: 1.6.1 >> freetype2: found, but unknown version (no pkg-config) >> * WARNING: Could not find 'freetype2' headers in any >> * of '.', './freetype2'. The report says the freetype2 headers could not be found, which probably means they are not installed. |
|
From: Bill C. <wcc...@lb...> - 2011-08-08 22:46:14
|
Hi all, I had matplotlib-0.99.1.1 working with Python 2.6 on OS X v10.6(Snow Leopard). Today I upgraded to Lion (v10.7) and matplotlib had disappeared. Lion ships with Apple¹s version of Python 2.7. Even when I look back at Python 2.6 in the /System/Library/Frameworks/Python/Version/Python2.6, it seems to be gone. OK, I thought I would install matplotlib-1.0.1 in Python 2.7 using easy_install. It failed when unable to find the headers for numpy (terminal output below). Lion comes with numpy 1.5.1 pre-installed. I tried re-installing numpy but that didn¹t help so now I¹m stuck. Any suggestions? Thanks. c4-2c-3-1-f0-3a:matplotlib-1.0.1 williamcarithers$ sudo easy_install matplotlib Searching for matplotlib Reading http://pypi.python.org/simple/matplotlib/ Reading http://matplotlib.sourceforge.net Reading https://sourceforge.net/projects/matplotlib/files/matplotlib/matplotlib-1.0. 1/ Reading http://sourceforge.net/project/showfiles.php?group_id=80706&package_id=82474 Reading http://sourceforge.net/project/showfiles.php?group_id=80706 Reading https://sourceforge.net/project/showfiles.php?group_id=80706&package_id=8247 4 Reading https://sourceforge.net/projects/matplotlib/files/matplotlib/matplotlib-0.99 .1/ Reading https://sourceforge.net/project/showfiles.php?group_id=80706&package_id=2781 94 Reading https://sourceforge.net/projects/matplotlib/files/matplotlib/matplotlib-0.99 .3/ Reading https://sourceforge.net/projects/matplotlib/files/matplotlib/matplotlib-1.0 Best match: matplotlib 1.0.1 Downloading http://sourceforge.net/projects/matplotlib/files/matplotlib/matplotlib-1.0.1 /matplotlib-1.0.1.tar.gz/download Processing matplotlib-1.0.1.tar.gz Running matplotlib-1.0.1/setup.py -q bdist_egg --dist-dir /tmp/easy_install-OI8zuY/matplotlib-1.0.1/egg-dist-tmp-3EXRXm basedirlist is: [] ============================================================================ BUILDING MATPLOTLIB matplotlib: 1.0.1 python: 2.7.1 (r271:86832, Jun 16 2011, 16:59:05) [GCC 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2335.15.00)] platform: darwin REQUIRED DEPENDENCIES numpy: 1.5.1 * Could not find the headers for numpy. You may * need to install the development package. error: Setup script exited with 1 |
|
From: Michael D. <md...@st...> - 2011-08-08 12:04:10
|
This is a shot in the dark, but I've seen this before when matplotlib
didn't get fully rebuilt after a numpy upgrade.
Mike
On 08/04/2011 01:13 PM, Alexey Uimanov wrote:
> here is the sample code "embedding_in_gtk2.py"
>
> 6 import gtk
> 7
> 8 from matplotlib.figure import Figure
> 9 from numpy import arange, sin, pi
> 10
> 11 # uncomment to select /GTK/GTKAgg/GTKCairo
> 12 #from matplotlib.backends.backend_gtk import FigureCanvasGTK as FigureCanvas
> 13 from matplotlib.backends.backend_gtkagg import FigureCanvasGTKAgg
> as FigureCanvas
> 14 #from matplotlib.backends.backend_gtkcairo import
> FigureCanvasGTKCairo as FigureCanvas
> 15
> 16 # or NavigationToolbar for classic
> 17 #from matplotlib.backends.backend_gtk import NavigationToolbar2GTK
> as NavigationToolbar
> 18 from matplotlib.backends.backend_gtkagg import
> NavigationToolbar2GTKAgg as NavigationToolbar
> 19
> 20
> 21 win = gtk.Window()
> 22 win.connect("destroy", lambda x: gtk.main_quit())
> 23 win.set_default_size(400,300)
> 24 win.set_title("Embedding in GTK")
> 25
> 26 vbox = gtk.VBox()
> 27 win.add(vbox)
> 28
> 29 fig = Figure(figsize=(5,4), dpi=100)
> 30 import pudb
> 31 pudb.set_trace()
> 32 ax = fig.add_subplot(111)
> 33 t = arange(0.0,3.0,0.01)
> 34 s = sin(2*pi*t)
> 35
> 36 ax.plot(t,s)
> 37
> 38
> 39 canvas = FigureCanvas(fig) # a gtk.DrawingArea
> 40 vbox.pack_start(canvas)
> 41 toolbar = NavigationToolbar(canvas, win)
> 42 vbox.pack_start(toolbar, False, False)
> 43
> 44
> 45 win.show_all()
> 46 gtk.main()
>
> on line 36 error segfault.
> Here is the gdb session
>
> Starting program: /usr/bin/python2.7 embedding_in_gtk2.py
> [Thread debugging using libthread_db enabled]
>
> Program received signal SIGSEGV, Segmentation fault.
> 0x00007fffeda71594 in __cxa_allocate_exception () from
> /usr/lib/gcc/x86_64-pc-linux-gnu/4.4.5/libstdc++.so.6
> #0 0x00007fffeda71594 in __cxa_allocate_exception () from
> /usr/lib/gcc/x86_64-pc-linux-gnu/4.4.5/libstdc++.so.6
> #1 0x00007fffe4830164 in py_to_agg_transformation_matrix(_object*, bool) ()
> from /usr/lib64/python2.7/site-packages/matplotlib/_path.so
> #2 0x00007fffe483addb in _path_module::update_path_extents(Py::Tuple const&) ()
> from /usr/lib64/python2.7/site-packages/matplotlib/_path.so
> #3 0x00007fffe4841ad8 in
> Py::ExtensionModule<_path_module>::invoke_method_varargs(void*,
> Py::Tuple const&) ()
> from /usr/lib64/python2.7/site-packages/matplotlib/_path.so
> #4 0x00007fffe482b54d in method_varargs_call_handler () from
> /usr/lib64/python2.7/site-packages/matplotlib/_path.so
> #5 0x00007ffff7b09a7b in PyEval_EvalFrameEx () from
> /usr/lib64/libpython2.7.so.1.0
> #6 0x00007ffff7b0b658 in PyEval_EvalCodeEx () from
> /usr/lib64/libpython2.7.so.1.0
> #7 0x00007ffff7b09bc7 in PyEval_EvalFrameEx () from
> /usr/lib64/libpython2.7.so.1.0
> #8 0x00007ffff7b0b658 in PyEval_EvalCodeEx () from
> /usr/lib64/libpython2.7.so.1.0
> #9 0x00007ffff7b09bc7 in PyEval_EvalFrameEx () from
> /usr/lib64/libpython2.7.so.1.0
> #10 0x00007ffff7b0b658 in PyEval_EvalCodeEx () from
> /usr/lib64/libpython2.7.so.1.0
> #11 0x00007ffff7b09bc7 in PyEval_EvalFrameEx () from
> /usr/lib64/libpython2.7.so.1.0
> #12 0x00007ffff7b0b658 in PyEval_EvalCodeEx () from
> /usr/lib64/libpython2.7.so.1.0
> #13 0x00007ffff7b09bc7 in PyEval_EvalFrameEx () from
> /usr/lib64/libpython2.7.so.1.0
> #14 0x00007ffff7b0b658 in PyEval_EvalCodeEx () from
> /usr/lib64/libpython2.7.so.1.0
> #15 0x00007ffff7b0b762 in PyEval_EvalCode () from /usr/lib64/libpython2.7.so.1.0
> #16 0x00007ffff7b2545c in ?? () from /usr/lib64/libpython2.7.so.1.0
> #17 0x00007ffff7b25530 in PyRun_FileExFlags () from
> /usr/lib64/libpython2.7.so.1.0
> #18 0x00007ffff7b26a1f in PyRun_SimpleFileExFlags () from
> /usr/lib64/libpython2.7.so.1.0
> #19 0x00007ffff7b377cc in Py_Main () from /usr/lib64/libpython2.7.so.1.0
> #20 0x00007ffff74d4bad in __libc_start_main () from /lib64/libc.so.6
> #21 0x00000000004008c9 in _start ()
>
> I have python 2.7.1 and amd64 linux distributive (gentoo). I did not
> see this problem on x86 linux.
> Thanks.
>
> ------------------------------------------------------------------------------
> BlackBerry® DevCon Americas, Oct. 18-20, San Francisco, CA
> The must-attend event for mobile developers. Connect with experts.
> Get tools for creating Super Apps. See the latest technologies.
> Sessions, hands-on labs, demos& much more. Register early& save!
> http://p.sf.net/sfu/rim-blackberry-1
> _______________________________________________
> Matplotlib-users mailing list
> Mat...@li...
> https://lists.sourceforge.net/lists/listinfo/matplotlib-users
--
Michael Droettboom
Science Software Branch
Space Telescope Science Institute
Baltimore, Maryland, USA
|
|
From: German O. <ger...@gm...> - 2011-08-08 11:40:10
|
Good afternoon Experts: Do you know if there is an py application where I can build a matplotlib plot interactively for data series, and then when it finished, the source code could be exported to be used in a python application? Many thanks for your help, German |
|
From: Jae-Joon L. <lee...@gm...> - 2011-08-08 02:28:16
|
On Fri, Aug 5, 2011 at 4:22 AM, Paul Blelloch <pau...@at...> wrote:
> title = 'Overlap'
Did you mean to do
title("Overlap")
?
And yes it works as expected.
If it does not work for you, please post a simple but complete example.
-JJ
|
|
From: Jae-Joon L. <lee...@gm...> - 2011-08-08 02:13:21
|
I just installed the fr_FR locale and tested your patch, and I don't see any problem. I suspect that this is the problem of Axes3D (that has recently fixed by Ben), and has nothing with your patch. If I revert Ben's commit, than an error is raised regardless of the value of rcParams["axes.formatter.use_locale"]. Regards, -JJ On Sat, Aug 6, 2011 at 12:49 AM, Michael Droettboom <md...@st...> wrote: > I'm still puzzled here. The TeX file is definitely being generated with > an unreasonably large size, which is what causes it to blow up. It gets > the size from the size of the matplotlib figure, which I assume is being > incorrectly calculated by the tight bounding box code. Of course, I > can't reproduce that here, so I'm not sure what's going on. > > Do any of the developers who understand the tight bounding box code have > any theories? > > Mike > > On 08/05/2011 09:57 AM, José Alexandre Nalon wrote: >> Hello! >> >>> This is puzzling. I can't reproduce this -- I even get nice commas. >>> Are you running the locale_formatting branch exactly as it is (i.e. not >>> applying it as a patch to another version of matplotlib)? What platform >>> are you on? Which backend? What does "echo $LANG" at the commandline say? >> I actually am getting this error with a couple of scripts, >> but both use bbox_inches='tight', and are 3D plots. I tried >> 2D plots with this option and there was no problem. In every >> script, I also get the commas. It is probably one of those >> bugs that appear because of the configuration of the many >> packages that are being used. >> >> I gathered some information, and I hope it helps. I am using >> Kubuntu 10.10, and Texlive distribution. I downloaded the >> .tar.gz package from github in your branch, and built it. >> At the time of compilation, I didn't have Tk or GTK headers >> (since I don't use matplotlib interactively, I don't really >> need them). Below, I also included the list of met dependencies, >> according to the installation script. I got no errors during >> compilation, only a warning (also listed below). Tex file >> and others are attached with this message (since my /tmp >> directory was wiped in reboot, I had to run the script again, >> hence the different names). This is all the information that I >> could think of, but if there is anything else, just send a >> message. Thanks again for your work! >> >> nalon@marvin:~/temp/test$ uname -a >> Linux marvin 2.6.35-30-generic #56-Ubuntu SMP Mon Jul 11 20:00:22 UTC 2011 >> i686 GNU/Linux >> >> nalon@marvin:~/temp/test$ echo $LANG >> pt_BR.UTF-8 >> >> nalon@marvin:~/temp/test$ latex -v >> pdfTeX 3.1415926-1.40.10-2.2 (TeX Live 2009/Debian) >> kpathsea version 5.0.0 >> Copyright 2009 Peter Breitenlohner (eTeX)/Han The Thanh (pdfTeX). >> There is NO warranty. Redistribution of this software is >> covered by the terms of both the pdfTeX copyright and >> the Lesser GNU General Public License. >> For more information about these matters, see the file >> named COPYING and the pdfTeX source. >> Primary author of pdfTeX: Peter Breitenlohner (eTeX)/Han The Thanh (pdfTeX). >> Compiled with libpng 1.2.44; using libpng 1.2.44 >> Compiled with zlib 1.2.3.4; using zlib 1.2.3.4 >> Compiled with poppler version 0.14.2 >> >> nalon@marvin:~/temp/test$ python >> Python 2.6.6 (r266:84292, Sep 15 2010, 15:52:39) >> [GCC 4.4.5] on linux2 >> >>>>> numpy.__version__ >> '1.3.0' >>>>> matplotlib.__version__ >> '1.1.0' >>>>> print matplotlib.rcParams['backend'] >> agg >> >> Here is a relation of met dependencies and their versions >> (according to matplotlib installation script): >> >> Qt: 4.7.0 >> PyQt: 4.8.1 >> Freetype2: 12.0.6 >> Cairo: 1.8.8 >> libpng: 1.2.44 >> dvipng: 1.13 >> ghostscript: 8.71 >> latex: 3.1415926 >> pdftops: 0.14.3 >> >> No errors during installation, only these warnings: >> >> src/path.cpp: In member function ‘Py::Object >> _path_module::convert_to_svg(const Py::Tuple&)’: >> src/path.cpp:1590: warning: format not a string literal and no format >> arguments >> src/path.cpp:1590: warning: format not a string literal and no format >> arguments >> src/path.cpp:1593: warning: format not a string literal and no format >> arguments >> src/path.cpp:1593: warning: format not a string literal and no format >> arguments >> src/path.cpp:1502: warning: ‘clip_rect.agg::rect_base<double>::y2’ may be used >> uninitialized in this function >> src/path.cpp:1502: warning: ‘clip_rect.agg::rect_base<double>::x2’ may be used >> uninitialized in this function >> src/path.cpp:1502: warning: ‘clip_rect.agg::rect_base<double>::y1’ may be used >> uninitialized in this function >> src/path.cpp:1502: warning: ‘clip_rect.agg::rect_base<double>::x1’ may be used >> uninitialized in this function >> >> --- >> José Alexandre Nalon >> na...@te... > > > ------------------------------------------------------------------------------ > BlackBerry® DevCon Americas, Oct. 18-20, San Francisco, CA > The must-attend event for mobile developers. Connect with experts. > Get tools for creating Super Apps. See the latest technologies. > Sessions, hands-on labs, demos & much more. Register early & save! > http://p.sf.net/sfu/rim-blackberry-1 > _______________________________________________ > Matplotlib-users mailing list > Mat...@li... > https://lists.sourceforge.net/lists/listinfo/matplotlib-users > |
|
From: R. P. S. <R.S...@um...> - 2011-08-06 23:09:22
|
So, I have a python 3.2 install on my Mac for other purposes, but when I heard about the matplotlib branch for python 3 I figured I'd give it a try even though I have a perfectly good version for python 2.7 running already. However, in attempting to build matplotlib, I get the following output: > basedirlist is: [] > ============================================================================ > BUILDING MATPLOTLIB > matplotlib: 1.1.0 > python: 3.2.1 (v3.2.1:ac1f7e5c0510, Jul 9 2011, 00:46:58) > [GCC 4.0.1 (Apple Inc. build 5493)] > platform: darwin > > REQUIRED DEPENDENCIES > numpy: 1.6.1 > freetype2: found, but unknown version (no pkg-config) > * WARNING: Could not find 'freetype2' headers in any > * of '.', './freetype2'. > > OPTIONAL BACKEND DEPENDENCIES > libpng: found, but unknown version (no pkg-config) > * Could not find 'libpng' headers in any of '.' > Tkinter: Tkinter: version not identified, Tk: 8.4, Tcl: 8.4 > Gtk+: no > * Building for Gtk+ requires pygtk; you must be able > * to "import gtk" in your build/install environment > Mac OS X native: yes > Qt: no > Qt4: no > Cairo: no > > OPTIONAL DATE/TIMEZONE DEPENDENCIES > datetime: present, version unknown > dateutil: matplotlib will provide > pytz: matplotlib will provide > adding pytz > > OPTIONAL USETEX DEPENDENCIES > dvipng: 1.14 > ghostscript: 9.02 > latex: 3.1415926 > > [Edit setup.cfg to suppress the above messages] > ============================================================================ > pymods ['pylab'] > packages ['matplotlib', 'matplotlib.backends', 'matplotlib.backends.qt4_editor', 'matplotlib.projections', 'matplotlib.testing', 'matplotlib.testing.jpl_units', 'matplotlib.tests', 'mpl_toolkits', 'mpl_toolkits.mplot3d', 'mpl_toolkits.axes_grid', 'mpl_toolkits.axes_grid1', 'mpl_toolkits.axisartist', 'matplotlib.sphinxext', 'matplotlib.tri', 'matplotlib.delaunay', 'pytz', 'dateutil', 'dateutil.zoneinfo'] > running build > running build_py > creating build > creating build/lib.macosx-10.3-fat-3.2 > copying lib/pylab.py -> build/lib.macosx-10.3-fat-3.2 > creating build/lib.macosx-10.3-fat-3.2/matplotlib > copying lib/matplotlib/__init__.py -> build/lib.macosx-10.3-fat-3.2/matplotlib > copying lib/matplotlib/_cm.py -> build/lib.macosx-10.3-fat-3.2/matplotlib > copying lib/matplotlib/_mathtext_data.py -> build/lib.macosx-10.3-fat-3.2/matplotlib > copying lib/matplotlib/_pylab_helpers.py -> build/lib.macosx-10.3-fat-3.2/matplotlib > copying lib/matplotlib/afm.py -> build/lib.macosx-10.3-fat-3.2/matplotlib > copying lib/matplotlib/animation.py -> build/lib.macosx-10.3-fat-3.2/matplotlib > copying lib/matplotlib/artist.py -> build/lib.macosx-10.3-fat-3.2/matplotlib > copying lib/matplotlib/axes.py -> build/lib.macosx-10.3-fat-3.2/matplotlib > copying lib/matplotlib/axis.py -> build/lib.macosx-10.3-fat-3.2/matplotlib > copying lib/matplotlib/backend_bases.py -> build/lib.macosx-10.3-fat-3.2/matplotlib > copying lib/matplotlib/bezier.py -> build/lib.macosx-10.3-fat-3.2/matplotlib > copying lib/matplotlib/blocking_input.py -> build/lib.macosx-10.3-fat-3.2/matplotlib > copying lib/matplotlib/cbook.py -> build/lib.macosx-10.3-fat-3.2/matplotlib > copying lib/matplotlib/cm.py -> build/lib.macosx-10.3-fat-3.2/matplotlib > copying lib/matplotlib/collections.py -> build/lib.macosx-10.3-fat-3.2/matplotlib > copying lib/matplotlib/colorbar.py -> build/lib.macosx-10.3-fat-3.2/matplotlib > copying lib/matplotlib/colors.py -> build/lib.macosx-10.3-fat-3.2/matplotlib > copying lib/matplotlib/container.py -> build/lib.macosx-10.3-fat-3.2/matplotlib > copying lib/matplotlib/contour.py -> build/lib.macosx-10.3-fat-3.2/matplotlib > copying lib/matplotlib/dates.py -> build/lib.macosx-10.3-fat-3.2/matplotlib > copying lib/matplotlib/docstring.py -> build/lib.macosx-10.3-fat-3.2/matplotlib > copying lib/matplotlib/dviread.py -> build/lib.macosx-10.3-fat-3.2/matplotlib > copying lib/matplotlib/figure.py -> build/lib.macosx-10.3-fat-3.2/matplotlib > copying lib/matplotlib/finance.py -> build/lib.macosx-10.3-fat-3.2/matplotlib > copying lib/matplotlib/font_manager.py -> build/lib.macosx-10.3-fat-3.2/matplotlib > copying lib/matplotlib/fontconfig_pattern.py -> build/lib.macosx-10.3-fat-3.2/matplotlib > copying lib/matplotlib/gridspec.py -> build/lib.macosx-10.3-fat-3.2/matplotlib > copying lib/matplotlib/hatch.py -> build/lib.macosx-10.3-fat-3.2/matplotlib > copying lib/matplotlib/image.py -> build/lib.macosx-10.3-fat-3.2/matplotlib > copying lib/matplotlib/legend.py -> build/lib.macosx-10.3-fat-3.2/matplotlib > copying lib/matplotlib/legend_handler.py -> build/lib.macosx-10.3-fat-3.2/matplotlib > copying lib/matplotlib/lines.py -> build/lib.macosx-10.3-fat-3.2/matplotlib > copying lib/matplotlib/mathtext.py -> build/lib.macosx-10.3-fat-3.2/matplotlib > copying lib/matplotlib/mlab.py -> build/lib.macosx-10.3-fat-3.2/matplotlib > copying lib/matplotlib/mpl.py -> build/lib.macosx-10.3-fat-3.2/matplotlib > copying lib/matplotlib/offsetbox.py -> build/lib.macosx-10.3-fat-3.2/matplotlib > copying lib/matplotlib/patches.py -> build/lib.macosx-10.3-fat-3.2/matplotlib > copying lib/matplotlib/path.py -> build/lib.macosx-10.3-fat-3.2/matplotlib > copying lib/matplotlib/patheffects.py -> build/lib.macosx-10.3-fat-3.2/matplotlib > copying lib/matplotlib/pylab.py -> build/lib.macosx-10.3-fat-3.2/matplotlib > copying lib/matplotlib/pyparsing_py2.py -> build/lib.macosx-10.3-fat-3.2/matplotlib > copying lib/matplotlib/pyparsing_py3.py -> build/lib.macosx-10.3-fat-3.2/matplotlib > copying lib/matplotlib/pyplot.py -> build/lib.macosx-10.3-fat-3.2/matplotlib > copying lib/matplotlib/quiver.py -> build/lib.macosx-10.3-fat-3.2/matplotlib > copying lib/matplotlib/rcsetup.py -> build/lib.macosx-10.3-fat-3.2/matplotlib > copying lib/matplotlib/scale.py -> build/lib.macosx-10.3-fat-3.2/matplotlib > copying lib/matplotlib/spines.py -> build/lib.macosx-10.3-fat-3.2/matplotlib > copying lib/matplotlib/table.py -> build/lib.macosx-10.3-fat-3.2/matplotlib > copying lib/matplotlib/texmanager.py -> build/lib.macosx-10.3-fat-3.2/matplotlib > copying lib/matplotlib/text.py -> build/lib.macosx-10.3-fat-3.2/matplotlib > copying lib/matplotlib/textpath.py -> build/lib.macosx-10.3-fat-3.2/matplotlib > copying lib/matplotlib/ticker.py -> build/lib.macosx-10.3-fat-3.2/matplotlib > copying lib/matplotlib/tight_bbox.py -> build/lib.macosx-10.3-fat-3.2/matplotlib > copying lib/matplotlib/tight_layout.py -> build/lib.macosx-10.3-fat-3.2/matplotlib > copying lib/matplotlib/transforms.py -> build/lib.macosx-10.3-fat-3.2/matplotlib > copying lib/matplotlib/type1font.py -> build/lib.macosx-10.3-fat-3.2/matplotlib > copying lib/matplotlib/units.py -> build/lib.macosx-10.3-fat-3.2/matplotlib > copying lib/matplotlib/widgets.py -> build/lib.macosx-10.3-fat-3.2/matplotlib > creating build/lib.macosx-10.3-fat-3.2/matplotlib/backends > copying lib/matplotlib/backends/__init__.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/backends > copying lib/matplotlib/backends/backend_agg.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/backends > copying lib/matplotlib/backends/backend_cairo.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/backends > copying lib/matplotlib/backends/backend_cocoaagg.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/backends > copying lib/matplotlib/backends/backend_emf.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/backends > copying lib/matplotlib/backends/backend_fltkagg.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/backends > copying lib/matplotlib/backends/backend_gdk.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/backends > copying lib/matplotlib/backends/backend_gtk.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/backends > copying lib/matplotlib/backends/backend_gtkagg.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/backends > copying lib/matplotlib/backends/backend_gtkcairo.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/backends > copying lib/matplotlib/backends/backend_macosx.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/backends > copying lib/matplotlib/backends/backend_mixed.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/backends > copying lib/matplotlib/backends/backend_pdf.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/backends > copying lib/matplotlib/backends/backend_ps.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/backends > copying lib/matplotlib/backends/backend_qt.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/backends > copying lib/matplotlib/backends/backend_qt4.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/backends > copying lib/matplotlib/backends/backend_qt4agg.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/backends > copying lib/matplotlib/backends/backend_qtagg.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/backends > copying lib/matplotlib/backends/backend_svg.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/backends > copying lib/matplotlib/backends/backend_template.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/backends > copying lib/matplotlib/backends/backend_tkagg.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/backends > copying lib/matplotlib/backends/backend_wx.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/backends > copying lib/matplotlib/backends/backend_wxagg.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/backends > copying lib/matplotlib/backends/qt4_compat.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/backends > copying lib/matplotlib/backends/tkagg.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/backends > copying lib/matplotlib/backends/windowing.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/backends > creating build/lib.macosx-10.3-fat-3.2/matplotlib/backends/qt4_editor > copying lib/matplotlib/backends/qt4_editor/__init__.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/backends/qt4_editor > copying lib/matplotlib/backends/qt4_editor/figureoptions.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/backends/qt4_editor > copying lib/matplotlib/backends/qt4_editor/formlayout.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/backends/qt4_editor > creating build/lib.macosx-10.3-fat-3.2/matplotlib/projections > copying lib/matplotlib/projections/__init__.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/projections > copying lib/matplotlib/projections/geo.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/projections > copying lib/matplotlib/projections/polar.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/projections > creating build/lib.macosx-10.3-fat-3.2/matplotlib/testing > copying lib/matplotlib/testing/__init__.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/testing > copying lib/matplotlib/testing/compare.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/testing > copying lib/matplotlib/testing/decorators.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/testing > copying lib/matplotlib/testing/image_util.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/testing > copying lib/matplotlib/testing/noseclasses.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/testing > creating build/lib.macosx-10.3-fat-3.2/matplotlib/testing/jpl_units > copying lib/matplotlib/testing/jpl_units/__init__.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/testing/jpl_units > copying lib/matplotlib/testing/jpl_units/Duration.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/testing/jpl_units > copying lib/matplotlib/testing/jpl_units/Epoch.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/testing/jpl_units > copying lib/matplotlib/testing/jpl_units/EpochConverter.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/testing/jpl_units > copying lib/matplotlib/testing/jpl_units/StrConverter.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/testing/jpl_units > copying lib/matplotlib/testing/jpl_units/UnitDbl.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/testing/jpl_units > copying lib/matplotlib/testing/jpl_units/UnitDblConverter.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/testing/jpl_units > copying lib/matplotlib/testing/jpl_units/UnitDblFormatter.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/testing/jpl_units > creating build/lib.macosx-10.3-fat-3.2/matplotlib/tests > copying lib/matplotlib/tests/__init__.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests > copying lib/matplotlib/tests/test_agg.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests > copying lib/matplotlib/tests/test_axes.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests > copying lib/matplotlib/tests/test_backend_pdf.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests > copying lib/matplotlib/tests/test_backend_svg.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests > copying lib/matplotlib/tests/test_basic.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests > copying lib/matplotlib/tests/test_cbook.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests > copying lib/matplotlib/tests/test_dates.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests > copying lib/matplotlib/tests/test_delaunay.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests > copying lib/matplotlib/tests/test_image.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests > copying lib/matplotlib/tests/test_legend.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests > copying lib/matplotlib/tests/test_mathtext.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests > copying lib/matplotlib/tests/test_mlab.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests > copying lib/matplotlib/tests/test_png.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests > copying lib/matplotlib/tests/test_simplification.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests > copying lib/matplotlib/tests/test_spines.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests > copying lib/matplotlib/tests/test_text.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests > copying lib/matplotlib/tests/test_tightlayout.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests > copying lib/matplotlib/tests/test_transforms.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests > creating build/lib.macosx-10.3-fat-3.2/mpl_toolkits > copying lib/mpl_toolkits/__init__.py -> build/lib.macosx-10.3-fat-3.2/mpl_toolkits > copying lib/mpl_toolkits/exceltools.py -> build/lib.macosx-10.3-fat-3.2/mpl_toolkits > copying lib/mpl_toolkits/gtktools.py -> build/lib.macosx-10.3-fat-3.2/mpl_toolkits > creating build/lib.macosx-10.3-fat-3.2/mpl_toolkits/mplot3d > copying lib/mpl_toolkits/mplot3d/__init__.py -> build/lib.macosx-10.3-fat-3.2/mpl_toolkits/mplot3d > copying lib/mpl_toolkits/mplot3d/art3d.py -> build/lib.macosx-10.3-fat-3.2/mpl_toolkits/mplot3d > copying lib/mpl_toolkits/mplot3d/axes3d.py -> build/lib.macosx-10.3-fat-3.2/mpl_toolkits/mplot3d > copying lib/mpl_toolkits/mplot3d/axis3d.py -> build/lib.macosx-10.3-fat-3.2/mpl_toolkits/mplot3d > copying lib/mpl_toolkits/mplot3d/proj3d.py -> build/lib.macosx-10.3-fat-3.2/mpl_toolkits/mplot3d > creating build/lib.macosx-10.3-fat-3.2/mpl_toolkits/axes_grid > copying lib/mpl_toolkits/axes_grid/__init__.py -> build/lib.macosx-10.3-fat-3.2/mpl_toolkits/axes_grid > copying lib/mpl_toolkits/axes_grid/anchored_artists.py -> build/lib.macosx-10.3-fat-3.2/mpl_toolkits/axes_grid > copying lib/mpl_toolkits/axes_grid/angle_helper.py -> build/lib.macosx-10.3-fat-3.2/mpl_toolkits/axes_grid > copying lib/mpl_toolkits/axes_grid/axes_divider.py -> build/lib.macosx-10.3-fat-3.2/mpl_toolkits/axes_grid > copying lib/mpl_toolkits/axes_grid/axes_grid.py -> build/lib.macosx-10.3-fat-3.2/mpl_toolkits/axes_grid > copying lib/mpl_toolkits/axes_grid/axes_rgb.py -> build/lib.macosx-10.3-fat-3.2/mpl_toolkits/axes_grid > copying lib/mpl_toolkits/axes_grid/axes_size.py -> build/lib.macosx-10.3-fat-3.2/mpl_toolkits/axes_grid > copying lib/mpl_toolkits/axes_grid/axis_artist.py -> build/lib.macosx-10.3-fat-3.2/mpl_toolkits/axes_grid > copying lib/mpl_toolkits/axes_grid/axisline_style.py -> build/lib.macosx-10.3-fat-3.2/mpl_toolkits/axes_grid > copying lib/mpl_toolkits/axes_grid/axislines.py -> build/lib.macosx-10.3-fat-3.2/mpl_toolkits/axes_grid > copying lib/mpl_toolkits/axes_grid/clip_path.py -> build/lib.macosx-10.3-fat-3.2/mpl_toolkits/axes_grid > copying lib/mpl_toolkits/axes_grid/colorbar.py -> build/lib.macosx-10.3-fat-3.2/mpl_toolkits/axes_grid > copying lib/mpl_toolkits/axes_grid/floating_axes.py -> build/lib.macosx-10.3-fat-3.2/mpl_toolkits/axes_grid > copying lib/mpl_toolkits/axes_grid/grid_finder.py -> build/lib.macosx-10.3-fat-3.2/mpl_toolkits/axes_grid > copying lib/mpl_toolkits/axes_grid/grid_helper_curvelinear.py -> build/lib.macosx-10.3-fat-3.2/mpl_toolkits/axes_grid > copying lib/mpl_toolkits/axes_grid/inset_locator.py -> build/lib.macosx-10.3-fat-3.2/mpl_toolkits/axes_grid > copying lib/mpl_toolkits/axes_grid/parasite_axes.py -> build/lib.macosx-10.3-fat-3.2/mpl_toolkits/axes_grid > creating build/lib.macosx-10.3-fat-3.2/mpl_toolkits/axes_grid1 > copying lib/mpl_toolkits/axes_grid1/__init__.py -> build/lib.macosx-10.3-fat-3.2/mpl_toolkits/axes_grid1 > copying lib/mpl_toolkits/axes_grid1/anchored_artists.py -> build/lib.macosx-10.3-fat-3.2/mpl_toolkits/axes_grid1 > copying lib/mpl_toolkits/axes_grid1/axes_divider.py -> build/lib.macosx-10.3-fat-3.2/mpl_toolkits/axes_grid1 > copying lib/mpl_toolkits/axes_grid1/axes_grid.py -> build/lib.macosx-10.3-fat-3.2/mpl_toolkits/axes_grid1 > copying lib/mpl_toolkits/axes_grid1/axes_rgb.py -> build/lib.macosx-10.3-fat-3.2/mpl_toolkits/axes_grid1 > copying lib/mpl_toolkits/axes_grid1/axes_size.py -> build/lib.macosx-10.3-fat-3.2/mpl_toolkits/axes_grid1 > copying lib/mpl_toolkits/axes_grid1/colorbar.py -> build/lib.macosx-10.3-fat-3.2/mpl_toolkits/axes_grid1 > copying lib/mpl_toolkits/axes_grid1/inset_locator.py -> build/lib.macosx-10.3-fat-3.2/mpl_toolkits/axes_grid1 > copying lib/mpl_toolkits/axes_grid1/mpl_axes.py -> build/lib.macosx-10.3-fat-3.2/mpl_toolkits/axes_grid1 > copying lib/mpl_toolkits/axes_grid1/parasite_axes.py -> build/lib.macosx-10.3-fat-3.2/mpl_toolkits/axes_grid1 > creating build/lib.macosx-10.3-fat-3.2/mpl_toolkits/axisartist > copying lib/mpl_toolkits/axisartist/__init__.py -> build/lib.macosx-10.3-fat-3.2/mpl_toolkits/axisartist > copying lib/mpl_toolkits/axisartist/angle_helper.py -> build/lib.macosx-10.3-fat-3.2/mpl_toolkits/axisartist > copying lib/mpl_toolkits/axisartist/axis_artist.py -> build/lib.macosx-10.3-fat-3.2/mpl_toolkits/axisartist > copying lib/mpl_toolkits/axisartist/axisline_style.py -> build/lib.macosx-10.3-fat-3.2/mpl_toolkits/axisartist > copying lib/mpl_toolkits/axisartist/axislines.py -> build/lib.macosx-10.3-fat-3.2/mpl_toolkits/axisartist > copying lib/mpl_toolkits/axisartist/clip_path.py -> build/lib.macosx-10.3-fat-3.2/mpl_toolkits/axisartist > copying lib/mpl_toolkits/axisartist/floating_axes.py -> build/lib.macosx-10.3-fat-3.2/mpl_toolkits/axisartist > copying lib/mpl_toolkits/axisartist/grid_finder.py -> build/lib.macosx-10.3-fat-3.2/mpl_toolkits/axisartist > copying lib/mpl_toolkits/axisartist/grid_helper_curvelinear.py -> build/lib.macosx-10.3-fat-3.2/mpl_toolkits/axisartist > creating build/lib.macosx-10.3-fat-3.2/matplotlib/sphinxext > copying lib/matplotlib/sphinxext/__init__.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/sphinxext > copying lib/matplotlib/sphinxext/ipython_console_highlighting.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/sphinxext > copying lib/matplotlib/sphinxext/ipython_directive.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/sphinxext > copying lib/matplotlib/sphinxext/mathmpl.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/sphinxext > copying lib/matplotlib/sphinxext/only_directives.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/sphinxext > copying lib/matplotlib/sphinxext/plot_directive.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/sphinxext > creating build/lib.macosx-10.3-fat-3.2/matplotlib/tri > copying lib/matplotlib/tri/__init__.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/tri > copying lib/matplotlib/tri/triangulation.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/tri > copying lib/matplotlib/tri/tricontour.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/tri > copying lib/matplotlib/tri/tripcolor.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/tri > copying lib/matplotlib/tri/triplot.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/tri > creating build/lib.macosx-10.3-fat-3.2/matplotlib/delaunay > copying lib/matplotlib/delaunay/__init__.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/delaunay > copying lib/matplotlib/delaunay/interpolate.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/delaunay > copying lib/matplotlib/delaunay/testfuncs.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/delaunay > copying lib/matplotlib/delaunay/triangulate.py -> build/lib.macosx-10.3-fat-3.2/matplotlib/delaunay > creating build/lib.macosx-10.3-fat-3.2/pytz > copying lib/pytz/__init__.py -> build/lib.macosx-10.3-fat-3.2/pytz > copying lib/pytz/exceptions.py -> build/lib.macosx-10.3-fat-3.2/pytz > copying lib/pytz/reference.py -> build/lib.macosx-10.3-fat-3.2/pytz > copying lib/pytz/tzfile.py -> build/lib.macosx-10.3-fat-3.2/pytz > copying lib/pytz/tzinfo.py -> build/lib.macosx-10.3-fat-3.2/pytz > creating build/lib.macosx-10.3-fat-3.2/dateutil > copying lib/dateutil/__init__.py -> build/lib.macosx-10.3-fat-3.2/dateutil > copying lib/dateutil/easter.py -> build/lib.macosx-10.3-fat-3.2/dateutil > copying lib/dateutil/parser.py -> build/lib.macosx-10.3-fat-3.2/dateutil > copying lib/dateutil/relativedelta.py -> build/lib.macosx-10.3-fat-3.2/dateutil > copying lib/dateutil/rrule.py -> build/lib.macosx-10.3-fat-3.2/dateutil > copying lib/dateutil/tz.py -> build/lib.macosx-10.3-fat-3.2/dateutil > copying lib/dateutil/tzwin.py -> build/lib.macosx-10.3-fat-3.2/dateutil > creating build/lib.macosx-10.3-fat-3.2/dateutil/zoneinfo > copying lib/dateutil/zoneinfo/__init__.py -> build/lib.macosx-10.3-fat-3.2/dateutil/zoneinfo > creating build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data > creating build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts > creating build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/cmex10.afm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/cmmi10.afm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/cmr10.afm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/cmsy10.afm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/cmtt10.afm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/pagd8a.afm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/pagdo8a.afm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/pagk8a.afm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/pagko8a.afm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/pbkd8a.afm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/pbkdi8a.afm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/pbkl8a.afm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/pbkli8a.afm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/pcrb8a.afm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/pcrbo8a.afm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/pcrr8a.afm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/pcrro8a.afm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/phvb8a.afm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/phvb8an.afm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/phvbo8a.afm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/phvbo8an.afm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/phvl8a.afm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/phvlo8a.afm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/phvr8a.afm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/phvr8an.afm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/phvro8a.afm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/phvro8an.afm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/pncb8a.afm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/pncbi8a.afm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/pncr8a.afm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/pncri8a.afm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/pplb8a.afm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/pplbi8a.afm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/pplr8a.afm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/pplri8a.afm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/psyr.afm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/ptmb8a.afm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/ptmbi8a.afm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/ptmr8a.afm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/ptmri8a.afm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/putb8a.afm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/putbi8a.afm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/putr8a.afm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/putri8a.afm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/pzcmi8a.afm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/afm > copying lib/matplotlib/mpl-data/fonts/afm/pzdr.afm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/afm > creating build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/pdfcorefonts > copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Courier-Bold.afm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/pdfcorefonts > copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Courier-BoldOblique.afm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/pdfcorefonts > copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Courier-Oblique.afm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/pdfcorefonts > copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Courier.afm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/pdfcorefonts > copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Helvetica-Bold.afm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/pdfcorefonts > copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Helvetica-BoldOblique.afm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/pdfcorefonts > copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Helvetica-Oblique.afm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/pdfcorefonts > copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Helvetica.afm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/pdfcorefonts > copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Symbol.afm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/pdfcorefonts > copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Times-Bold.afm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/pdfcorefonts > copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Times-BoldItalic.afm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/pdfcorefonts > copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Times-Italic.afm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/pdfcorefonts > copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/Times-Roman.afm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/pdfcorefonts > copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/ZapfDingbats.afm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/pdfcorefonts > copying lib/matplotlib/mpl-data/fonts/pdfcorefonts/readme.txt -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/pdfcorefonts > creating build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/cmb10.ttf -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/cmex10.ttf -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/cmmi10.ttf -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/cmr10.ttf -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/cmss10.ttf -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/cmsy10.ttf -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/cmtt10.ttf -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/STIXGeneral.ttf -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/STIXGeneralBol.ttf -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/STIXGeneralBolIta.ttf -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/STIXGeneralItalic.ttf -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/STIXNonUni.ttf -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/STIXNonUniBol.ttf -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/STIXNonUniBolIta.ttf -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/STIXNonUniIta.ttf -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/STIXSizFiveSymReg.ttf -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/STIXSizFourSymBol.ttf -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/STIXSizFourSymReg.ttf -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/STIXSizOneSymBol.ttf -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/STIXSizOneSymReg.ttf -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/STIXSizThreeSymBol.ttf -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/STIXSizThreeSymReg.ttf -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/STIXSizTwoSymBol.ttf -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/STIXSizTwoSymReg.ttf -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/Vera.ttf -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/VeraBd.ttf -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/VeraBI.ttf -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/VeraIt.ttf -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/VeraMoBd.ttf -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/VeraMoBI.ttf -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/VeraMoIt.ttf -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/VeraMono.ttf -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/VeraSe.ttf -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/VeraSeBd.ttf -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/LICENSE_STIX -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/COPYRIGHT.TXT -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/README.TXT -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/ttf > copying lib/matplotlib/mpl-data/fonts/ttf/RELEASENOTES.TXT -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/fonts/ttf > creating build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/back.xpm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/filesave.xpm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/forward.xpm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/hand.xpm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/home.xpm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/move.xpm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/stock_close.xpm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/stock_down.xpm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/stock_left.xpm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/stock_refresh.xpm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/stock_right.xpm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/stock_save_as.xpm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/stock_up.xpm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/stock_zoom-in.xpm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/stock_zoom-out.xpm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/subplots.xpm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/zoom_to_rect.xpm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/back.svg -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/filesave.svg -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/forward.svg -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/hand.svg -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/home.svg -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/matplotlib.svg -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/move.svg -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/qt4_editor_options.svg -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/zoom_to_rect.svg -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/back.png -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/filesave.png -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/forward.png -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/hand.png -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/home.png -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/matplotlib.png -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/move.png -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/qt4_editor_options.png -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/subplots.png -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/zoom_to_rect.png -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/back.ppm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/filesave.ppm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/forward.ppm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/hand.ppm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/home.ppm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/move.ppm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/stock_close.ppm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/stock_down.ppm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/stock_left.ppm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/stock_refresh.ppm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/stock_right.ppm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/stock_save_as.ppm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/stock_up.ppm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/stock_zoom-in.ppm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/stock_zoom-out.ppm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/subplots.ppm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/images/zoom_to_rect.ppm -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data/images > copying lib/matplotlib/mpl-data/matplotlibrc -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data > copying lib/matplotlib/mpl-data/matplotlib.conf -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data > copying lib/matplotlib/mpl-data/lineprops.glade -> build/lib.macosx-10.3-fat-3.2/matplotlib/mpl-data > creating build/lib.macosx-10.3-fat-3.2/matplotlib/backends/Matplotlib.nib > copying lib/matplotlib/backends/Matplotlib.nib/classes.nib -> build/lib.macosx-10.3-fat-3.2/matplotlib/backends/Matplotlib.nib > copying lib/matplotlib/backends/Matplotlib.nib/info.nib -> build/lib.macosx-10.3-fat-3.2/matplotlib/backends/Matplotlib.nib > copying lib/matplotlib/backends/Matplotlib.nib/keyedobjects.nib -> build/lib.macosx-10.3-fat-3.2/matplotlib/backends/Matplotlib.nib > creating build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images > creating build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/pngsuite > copying lib/matplotlib/tests/baseline_images/pngsuite/basn0g01.png -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/pngsuite > copying lib/matplotlib/tests/baseline_images/pngsuite/basn0g02.png -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/pngsuite > copying lib/matplotlib/tests/baseline_images/pngsuite/basn0g04.png -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/pngsuite > copying lib/matplotlib/tests/baseline_images/pngsuite/basn0g08.png -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/pngsuite > copying lib/matplotlib/tests/baseline_images/pngsuite/basn0g16.png -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/pngsuite > copying lib/matplotlib/tests/baseline_images/pngsuite/basn2c08.png -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/pngsuite > copying lib/matplotlib/tests/baseline_images/pngsuite/basn2c16.png -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/pngsuite > copying lib/matplotlib/tests/baseline_images/pngsuite/basn3p01.png -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/pngsuite > copying lib/matplotlib/tests/baseline_images/pngsuite/basn3p02.png -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/pngsuite > copying lib/matplotlib/tests/baseline_images/pngsuite/basn3p04.png -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/pngsuite > copying lib/matplotlib/tests/baseline_images/pngsuite/basn3p08.png -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/pngsuite > copying lib/matplotlib/tests/baseline_images/pngsuite/basn4a08.png -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/pngsuite > copying lib/matplotlib/tests/baseline_images/pngsuite/basn4a16.png -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/pngsuite > copying lib/matplotlib/tests/baseline_images/pngsuite/basn6a08.png -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/pngsuite > copying lib/matplotlib/tests/baseline_images/pngsuite/basn6a16.png -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/pngsuite > creating build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/arc_ellipse.pdf -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/arc_ellipse.png -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/arc_ellipse.svg -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/axhspan_epoch.pdf -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/axhspan_epoch.png -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/axhspan_epoch.svg -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/axvspan_epoch.pdf -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/axvspan_epoch.png -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/axvspan_epoch.svg -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/canonical.pdf -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/canonical.png -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/canonical.svg -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/const_xy.pdf -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/const_xy.png -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/const_xy.svg -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/fill_between_interpolate.pdf -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/fill_between_interpolate.png -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/fill_between_interpolate.svg -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/fill_units.pdf -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/fill_units.png -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/fill_units.svg -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/formatter_ticker_001.pdf -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/formatter_ticker_001.png -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/formatter_ticker_001.svg -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/formatter_ticker_002.pdf -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/formatter_ticker_002.png -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/formatter_ticker_002.svg -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/formatter_ticker_003.pdf -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/formatter_ticker_003.png -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/formatter_ticker_003.svg -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/formatter_ticker_004.pdf -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/formatter_ticker_004.png -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/formatter_ticker_004.svg -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/formatter_ticker_005.pdf -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/formatter_ticker_005.png -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/formatter_ticker_005.svg -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/hexbin_extent.pdf -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/hexbin_extent.png -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/hexbin_extent.svg -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/imshow.pdf -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/imshow.png -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/imshow.svg -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/imshow_clip.pdf -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/imshow_clip.png -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/imshow_clip.svg -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/markevery.pdf -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/markevery.png -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/markevery.svg -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/markevery_line.pdf -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/markevery_line.png -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/markevery_line.svg -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/nonfinite_limits.pdf -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/nonfinite_limits.png -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/nonfinite_limits.svg -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/offset_points.pdf -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/offset_points.png -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/offset_points.svg -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/pcolormesh.pdf -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/pcolormesh.png -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/pcolormesh.svg -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/polar_axes.pdf -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/polar_axes.png -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/polar_axes.svg -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/polar_coords.pdf -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/polar_coords.png -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/polar_coords.svg -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/polar_rmin.pdf -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/polar_rmin.png -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/polar_rmin.svg -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/polar_units.pdf -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/polar_units.png -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/polar_units.svg -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/polar_units_2.pdf -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/polar_units_2.png -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/polar_units_2.svg -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/polar_wrap_180.pdf -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/polar_wrap_180.png -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/polar_wrap_180.svg -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/polar_wrap_360.pdf -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/polar_wrap_360.png -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/polar_wrap_360.svg -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/polycollection_joinstyle.pdf -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/polycollection_joinstyle.png -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/polycollection_joinstyle.svg -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/shaped_data.pdf -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/shaped_data.png -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/shaped_data.svg -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/single_date.pdf -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/single_date.png -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/single_date.svg -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/single_point.pdf -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/single_point.png -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/single_point.svg -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/symlog.pdf -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/symlog.png -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/symlog.svg -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/units_strings.pdf -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/units_strings.png -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > copying lib/matplotlib/tests/baseline_images/test_axes/units_strings.svg -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_axes > creating build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_backend_pdf > copying lib/matplotlib/tests/baseline_images/test_backend_pdf/pdf_use14corefonts.pdf -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_backend_pdf > creating build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_dates > copying lib/matplotlib/tests/baseline_images/test_dates/date_axhline.pdf -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_dates > copying lib/matplotlib/tests/baseline_images/test_dates/date_axhline.png -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_dates > copying lib/matplotlib/tests/baseline_images/test_dates/date_axhline.svg -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_dates > copying lib/matplotlib/tests/baseline_images/test_dates/date_axhspan.pdf -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_dates > copying lib/matplotlib/tests/baseline_images/test_dates/date_axhspan.png -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_dates > copying lib/matplotlib/tests/baseline_images/test_dates/date_axhspan.svg -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_dates > copying lib/matplotlib/tests/baseline_images/test_dates/date_axvline.pdf -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_dates > copying lib/matplotlib/tests/baseline_images/test_dates/date_axvline.png -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_dates > copying lib/matplotlib/tests/baseline_images/test_dates/date_axvline.svg -> build/lib.macosx-10.3-fat-3.2/matplotlib/tests/baseline_images/test_dates > copying lib/matplotlib/tests/baseline_images/test_dates/date... [truncated message content] |
|
From: Goyo <goy...@gm...> - 2011-08-05 21:46:17
|
Seems like Axes.relim is what I was looking for. It does not take collections into account but I don't need that for now. 2011/8/1, Goyo <goy...@gm...>: > Hy all, > > I recently had a pretty hard time trying to figure out how to properly > autoscale a plot after removing a line (see attached script). Finally > I found at [1] that I have to explicitly refresh the axes dataLim > before autoscaling. > > In [1] John Hunter says that computing the proper dataLim can be > complicated if there are several types of artists in the axes, like > polygons and collections an that "[it] would be useful to have an Axes > method like "auto_datalim" to for the datalim to readjust to all the > current data." > > My question is whether such a function has been implemented. Besides > any suggestions about how to deal with this are welcome. I just need > to adjust to lines right now but this may change in the future. > > Best regards > > Goyo > > [1] http://old.nabble.com/Removing-a-line-from-a-plot-td7249600.html > |
|
From: Tony Yu <ts...@gm...> - 2011-08-05 20:15:11
|
On Fri, Aug 5, 2011 at 2:41 PM, Amir Jahanshahi <paj...@gm...> wrote: > Hi , > > The code for image-windows and image-linx comes from here: > > http://matplotlib.sourceforge.net/examples/pylab_examples/errorbar_limits.html > > That is why I think the problem is in linux. And the pdf which is attached > along with the png image named flow-rate are executed in linux which are > different. in windows both are the same. > > Thanks, > Amir > > Hi Amir, So I guess there's two separate issues: 1) pdf vs png output. 2) windows vs linux output. 1) I have no idea what could be causing the difference in pdf vs png output. They're rendered the same on my system, so I can't be of much help. 2) I still think the linux output is correct---assuming you're using the matplotlibrc file you attached. Yes, the example on the matplotlib website has arrows on the error bars, but in your matplotlibrc file, you've set lines.markeredgewidth to 0. Thus, you should expect the arrow heads/tails to disappear. The default matplotlibrc has a nonzero markeredgewidth, which is why the heads/tails are visible on the website. So to reiterate, linux seems to be giving the correct behavior. Now, for the windows output, are you certain you're using the same matplotlibrc? In other words, are you setting markeredgewidth to 0. If so, then I'd say there's a bug in the windows output. -Tony |